Trait integral_square_root::SquareRoot64 [] [src]

pub trait SquareRoot64 {
    fn sqrt(self) -> f64;
}

A trait that allows calculation of square root into a Float(64)

Required Methods

Calculates the square root of a number

Implementors