Trait float_traits::Sqrt [] [src]

pub trait Sqrt {
    type Output: Num;
    fn sqrt(self) -> Self::Output;
}

Associated Types

Required Methods

Implementations on Foreign Types

impl Sqrt for f32
[src]

[src]

impl<'a> Sqrt for &'a f32
[src]

[src]

impl Sqrt for f64
[src]

[src]

impl<'a> Sqrt for &'a f64
[src]

[src]

Implementors