/// Unary operator for retrieving the multiplicative inverse, or reciprocal, of a value. pubtrait Inv { /// The result after applying the operator. type Output;
/// Returns the multiplicative inverse of `self`. /// /// # Examples /// /// ``` /// use std::f64::INFINITY; /// use num_traits::Inv; /// /// assert_eq!(7.0.inv() * 7.0, 1.0); /// assert_eq!((-0.0).inv(), -INFINITY); /// ``` fn inv(self) -> Self::Output;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.