pub trait Sqrt {
    type Output;

    fn sqrt(self) -> Self::Output;
}
Expand description

Takes the square root of a number.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors