Trait std::math::Root

pub trait Root {
    fn sqrt(self) -> Self;
}
Expand description

Calculates the square root.

Required Methods