Trait scirust::algebra::ops::Recip [] [src]

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

A type for which computing the reciprocal is supported. Supported types include f32, f64, etc..

Associated Types

type Output = Self

The resulting type after computing 1 / x.

Required Methods

fn recip(self) -> Self::Output

The method for the computing 1 / x.

Implementors