pub trait SquareRoot {
    type Output;

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

Compute the square root of the number

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§