pub trait Ln { type Output; // Required method fn ln(self) -> Self::Output; }
Takes the natural logarithm of a number.