Trait fix::Pow [] [src]

pub trait Pow {
    fn pow(self, exp: u32) -> Self;
}

Exponentiation.

Enables being generic over integers which can be exponentiated. Why must we do this, standard library?

Required Methods

Raises self to the power of exp.

Implementors