pub trait Exponential: Sized {
    fn pow(&self, p: impl Into<Self>) -> Self;
    fn exp(&self) -> Self;
    fn exp2(&self) -> Self;
    fn log(&self) -> Self;
    fn log2(&self) -> Self;
    fn sqrt(&self) -> Self;
    fn isqrt(&self) -> Self;
}

Required Methods

Implementors