Trait alga::general::Recip [] [src]

pub trait Recip {
    type Result;
    fn recip(self) -> Self::Result;
}

The multiplicative inverse operation

Associated Types

The reciprocal type.

Required Methods

Returns the reciprocal of self.

Implementors