Trait pane::math::Pow

source ·
pub trait Pow<P> {
    type Output;

    fn pow(&self, power: P) -> Self::Output;
}
Expand description

Trait for raising numbers to a power

Required Associated Types

The output type

Required Methods

Raise this number to a power

Implementations on Foreign Types

Implementors