Trait SquareRoot

Source
pub trait SquareRoot {
    type Output;

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

Required Associated Types§

Required Methods§

Source

fn sqrt(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl SquareRoot for f32

Source§

type Output = f32

Source§

fn sqrt(self) -> Self::Output

Source§

impl SquareRoot for f64

Source§

type Output = f64

Source§

fn sqrt(self) -> Self::Output

Source§

impl SquareRoot for Complex<f32>

Source§

type Output = Complex<f32>

Source§

fn sqrt(self) -> Self::Output

Source§

impl SquareRoot for Complex<f64>

Source§

type Output = Complex<f64>

Source§

fn sqrt(self) -> Self::Output

Implementors§