Trait dimensioned::dimensioned::Cbrt [] [src]

pub trait Cbrt {
    type Output;
    fn cbrt(self) -> Self::Output;
}

Because it would not make sense to implement Float for Dim<D, V>, we create a special Cbrt trait. We then implement it for Dim<D, V> where V: Float

Associated Types

type Output

Required Methods

fn cbrt(self) -> Self::Output

Take the square root of a dimensioned object

Implementors