sign.rs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. use std::ops::Neg;
  2. use std::{f32, f64};
  3. use std::num::Wrapping;
  4. use Num;
  5. /// Useful functions for signed numbers (i.e. numbers that can be negative).
  6. pub trait Signed: Sized + Num + Neg<Output = Self> {
  7. /// Computes the absolute value.
  8. ///
  9. /// For `f32` and `f64`, `NaN` will be returned if the number is `NaN`.
  10. ///
  11. /// For signed integers, `::MIN` will be returned if the number is `::MIN`.
  12. fn abs(&self) -> Self;
  13. /// The positive difference of two numbers.
  14. ///
  15. /// Returns `zero` if the number is less than or equal to `other`, otherwise the difference
  16. /// between `self` and `other` is returned.
  17. fn abs_sub(&self, other: &Self) -> Self;
  18. /// Returns the sign of the number.
  19. ///
  20. /// For `f32` and `f64`:
  21. ///
  22. /// * `1.0` if the number is positive, `+0.0` or `INFINITY`
  23. /// * `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
  24. /// * `NaN` if the number is `NaN`
  25. ///
  26. /// For signed integers:
  27. ///
  28. /// * `0` if the number is zero
  29. /// * `1` if the number is positive
  30. /// * `-1` if the number is negative
  31. fn signum(&self) -> Self;
  32. /// Returns true if the number is positive and false if the number is zero or negative.
  33. fn is_positive(&self) -> bool;
  34. /// Returns true if the number is negative and false if the number is zero or positive.
  35. fn is_negative(&self) -> bool;
  36. }
  37. macro_rules! signed_impl {
  38. ($($t:ty)*) => ($(
  39. impl Signed for $t {
  40. #[inline]
  41. fn abs(&self) -> $t {
  42. if self.is_negative() { -*self } else { *self }
  43. }
  44. #[inline]
  45. fn abs_sub(&self, other: &$t) -> $t {
  46. if *self <= *other { 0 } else { *self - *other }
  47. }
  48. #[inline]
  49. fn signum(&self) -> $t {
  50. match *self {
  51. n if n > 0 => 1,
  52. 0 => 0,
  53. _ => -1,
  54. }
  55. }
  56. #[inline]
  57. fn is_positive(&self) -> bool { *self > 0 }
  58. #[inline]
  59. fn is_negative(&self) -> bool { *self < 0 }
  60. }
  61. )*)
  62. }
  63. signed_impl!(isize i8 i16 i32 i64);
  64. impl<T: Signed> Signed for Wrapping<T> where Wrapping<T>: Num + Neg<Output=Wrapping<T>>
  65. {
  66. #[inline]
  67. fn abs(&self) -> Self {
  68. Wrapping(self.0.abs())
  69. }
  70. #[inline]
  71. fn abs_sub(&self, other: &Self) -> Self {
  72. Wrapping(self.0.abs_sub(&other.0))
  73. }
  74. #[inline]
  75. fn signum(&self) -> Self {
  76. Wrapping(self.0.signum())
  77. }
  78. #[inline]
  79. fn is_positive(&self) -> bool { self.0.is_positive() }
  80. #[inline]
  81. fn is_negative(&self) -> bool { self.0.is_negative() }
  82. }
  83. macro_rules! signed_float_impl {
  84. ($t:ty, $nan:expr, $inf:expr, $neg_inf:expr) => {
  85. impl Signed for $t {
  86. /// Computes the absolute value. Returns `NAN` if the number is `NAN`.
  87. #[inline]
  88. fn abs(&self) -> $t {
  89. <$t>::abs(*self)
  90. }
  91. /// The positive difference of two numbers. Returns `0.0` if the number is
  92. /// less than or equal to `other`, otherwise the difference between`self`
  93. /// and `other` is returned.
  94. #[inline]
  95. #[allow(deprecated)]
  96. fn abs_sub(&self, other: &$t) -> $t {
  97. <$t>::abs_sub(*self, *other)
  98. }
  99. /// # Returns
  100. ///
  101. /// - `1.0` if the number is positive, `+0.0` or `INFINITY`
  102. /// - `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
  103. /// - `NAN` if the number is NaN
  104. #[inline]
  105. fn signum(&self) -> $t {
  106. <$t>::signum(*self)
  107. }
  108. /// Returns `true` if the number is positive, including `+0.0` and `INFINITY`
  109. #[inline]
  110. fn is_positive(&self) -> bool { *self > 0.0 || (1.0 / *self) == $inf }
  111. /// Returns `true` if the number is negative, including `-0.0` and `NEG_INFINITY`
  112. #[inline]
  113. fn is_negative(&self) -> bool { *self < 0.0 || (1.0 / *self) == $neg_inf }
  114. }
  115. }
  116. }
  117. signed_float_impl!(f32, f32::NAN, f32::INFINITY, f32::NEG_INFINITY);
  118. signed_float_impl!(f64, f64::NAN, f64::INFINITY, f64::NEG_INFINITY);
  119. /// Computes the absolute value.
  120. ///
  121. /// For `f32` and `f64`, `NaN` will be returned if the number is `NaN`
  122. ///
  123. /// For signed integers, `::MIN` will be returned if the number is `::MIN`.
  124. #[inline(always)]
  125. pub fn abs<T: Signed>(value: T) -> T {
  126. value.abs()
  127. }
  128. /// The positive difference of two numbers.
  129. ///
  130. /// Returns zero if `x` is less than or equal to `y`, otherwise the difference
  131. /// between `x` and `y` is returned.
  132. #[inline(always)]
  133. pub fn abs_sub<T: Signed>(x: T, y: T) -> T {
  134. x.abs_sub(&y)
  135. }
  136. /// Returns the sign of the number.
  137. ///
  138. /// For `f32` and `f64`:
  139. ///
  140. /// * `1.0` if the number is positive, `+0.0` or `INFINITY`
  141. /// * `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
  142. /// * `NaN` if the number is `NaN`
  143. ///
  144. /// For signed integers:
  145. ///
  146. /// * `0` if the number is zero
  147. /// * `1` if the number is positive
  148. /// * `-1` if the number is negative
  149. #[inline(always)] pub fn signum<T: Signed>(value: T) -> T { value.signum() }
  150. /// A trait for values which cannot be negative
  151. pub trait Unsigned: Num {}
  152. macro_rules! empty_trait_impl {
  153. ($name:ident for $($t:ty)*) => ($(
  154. impl $name for $t {}
  155. )*)
  156. }
  157. empty_trait_impl!(Unsigned for usize u8 u16 u32 u64);
  158. impl<T: Unsigned> Unsigned for Wrapping<T> where Wrapping<T>: Num {}