inv.rs 883 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /// Unary operator for retrieving the multiplicative inverse, or reciprocal, of a value.
  2. pub trait Inv {
  3. /// The result after applying the operator.
  4. type Output;
  5. /// Returns the multiplicative inverse of `self`.
  6. ///
  7. /// # Examples
  8. ///
  9. /// ```
  10. /// use std::f64::INFINITY;
  11. /// use num_traits::Inv;
  12. ///
  13. /// assert_eq!(7.0.inv() * 7.0, 1.0);
  14. /// assert_eq!((-0.0).inv(), -INFINITY);
  15. /// ```
  16. fn inv(self) -> Self::Output;
  17. }
  18. impl Inv for f32 {
  19. type Output = f32;
  20. #[inline]
  21. fn inv(self) -> f32 { 1.0 / self }
  22. }
  23. impl Inv for f64 {
  24. type Output = f64;
  25. #[inline]
  26. fn inv(self) -> f64 { 1.0 / self }
  27. }
  28. impl<'a> Inv for &'a f32 {
  29. type Output = f32;
  30. #[inline]
  31. fn inv(self) -> f32 { 1.0 / *self }
  32. }
  33. impl<'a> Inv for &'a f64 {
  34. type Output = f64;
  35. #[inline]
  36. fn inv(self) -> f64 { 1.0 / *self }
  37. }