sign.rs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. use core::ops::Neg;
  2. use core::num::Wrapping;
  3. use Num;
  4. use float::FloatCore;
  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) => {
  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. FloatCore::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. fn abs_sub(&self, other: &$t) -> $t {
  96. if *self <= *other { 0. } else { *self - *other }
  97. }
  98. /// # Returns
  99. ///
  100. /// - `1.0` if the number is positive, `+0.0` or `INFINITY`
  101. /// - `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
  102. /// - `NAN` if the number is NaN
  103. #[inline]
  104. fn signum(&self) -> $t {
  105. FloatCore::signum(*self)
  106. }
  107. /// Returns `true` if the number is positive, including `+0.0` and `INFINITY`
  108. #[inline]
  109. fn is_positive(&self) -> bool { FloatCore::is_sign_positive(*self) }
  110. /// Returns `true` if the number is negative, including `-0.0` and `NEG_INFINITY`
  111. #[inline]
  112. fn is_negative(&self) -> bool { FloatCore::is_sign_negative(*self) }
  113. }
  114. }
  115. }
  116. signed_float_impl!(f32);
  117. signed_float_impl!(f64);
  118. /// Computes the absolute value.
  119. ///
  120. /// For `f32` and `f64`, `NaN` will be returned if the number is `NaN`
  121. ///
  122. /// For signed integers, `::MIN` will be returned if the number is `::MIN`.
  123. #[inline(always)]
  124. pub fn abs<T: Signed>(value: T) -> T {
  125. value.abs()
  126. }
  127. /// The positive difference of two numbers.
  128. ///
  129. /// Returns zero if `x` is less than or equal to `y`, otherwise the difference
  130. /// between `x` and `y` is returned.
  131. #[inline(always)]
  132. pub fn abs_sub<T: Signed>(x: T, y: T) -> T {
  133. x.abs_sub(&y)
  134. }
  135. /// Returns the sign of the number.
  136. ///
  137. /// For `f32` and `f64`:
  138. ///
  139. /// * `1.0` if the number is positive, `+0.0` or `INFINITY`
  140. /// * `-1.0` if the number is negative, `-0.0` or `NEG_INFINITY`
  141. /// * `NaN` if the number is `NaN`
  142. ///
  143. /// For signed integers:
  144. ///
  145. /// * `0` if the number is zero
  146. /// * `1` if the number is positive
  147. /// * `-1` if the number is negative
  148. #[inline(always)] pub fn signum<T: Signed>(value: T) -> T { value.signum() }
  149. /// A trait for values which cannot be negative
  150. pub trait Unsigned: Num {}
  151. macro_rules! empty_trait_impl {
  152. ($name:ident for $($t:ty)*) => ($(
  153. impl $name for $t {}
  154. )*)
  155. }
  156. empty_trait_impl!(Unsigned for usize u8 u16 u32 u64);
  157. impl<T: Unsigned> Unsigned for Wrapping<T> where Wrapping<T>: Num {}
  158. #[test]
  159. fn unsigned_wrapping_is_unsigned() {
  160. fn require_unsigned<T: Unsigned>(_: &T) {}
  161. require_unsigned(&Wrapping(42_u32));
  162. }
  163. /*
  164. // Commenting this out since it doesn't compile on Rust 1.8,
  165. // because on this version Wrapping doesn't implement Neg and therefore can't
  166. // implement Signed.
  167. #[test]
  168. fn signed_wrapping_is_signed() {
  169. fn require_signed<T: Signed>(_: &T) {}
  170. require_signed(&Wrapping(-42));
  171. }
  172. */