pub trait Isqrt {
    fn isqrt(self) -> Self;
}
Expand description

A trait for calculating the integer square root.

Required Methods

Implementors