pub trait Sqrt { // Required method fn sqrt(self) -> Self; }
Represents a number that can calculate a square root.
Returns the square root.