pub trait Sqrt { // Required method fn _sqrt(self) -> Self; }
A trait for types that implement the the square-root function.
Returns the square root of a number.
Returns NaN if self is a negative number other than -0.0.
self
-0.0