Trait Recip

Source
pub trait Recip {
    type Output;

    // Required method
    fn recip(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn recip(self) -> Self::Output

Implementors§

Source§

impl<T> Recip for T
where T: Inv,

Source§

type Output = <T as Inv>::Output