pub trait Logarithm {
    fn log(self, base: Self) -> Self;
}
Expand description

Calculates the log with a given base.

Required Methods