CubicRoot

Trait CubicRoot 

Source
pub trait CubicRoot {
    type Output;

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

Required Associated Types§

Required Methods§

Source

fn cubic_root(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl CubicRoot for f32

Source§

type Output = f32

Source§

fn cubic_root(self) -> Self

Source§

impl CubicRoot for f64

Source§

type Output = f64

Source§

fn cubic_root(self) -> Self

Implementors§