Trait alga::general::Recip
[−]
[src]
pub trait Recip {
type Result;
fn recip(self) -> Self::Result;
}The multiplicative inverse operation
Associated Types
type Result
The reciprocal type.
Required Methods
fn recip(self) -> Self::Result
Returns the reciprocal of self.
Implementors
impl Recip for f32impl Recip for f64impl<M> Recip for Wrapper<M> where M: Quasigroup<Multiplicative>