Trait Sqrt

Source
pub trait Sqrt {
    type Output;

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

Takes the square root of a number.

Required Associated Types§

Required Methods§

Source

fn sqrt(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl Sqrt for f32

Source§

impl Sqrt for f64

Implementors§