pub trait Recip {
type Result;
// Required method
fn recip(self) -> Self::Result;
}Expand description
The multiplicative inverse operation
pub trait Recip {
type Result;
// Required method
fn recip(self) -> Self::Result;
}The multiplicative inverse operation