pub trait BinaryLogarithm {
    fn log2(self) -> Self;
}
Expand description

Calculates the binary log.

Required Methods