[][src]Trait ufix::UnsignedPow

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

Exponentiation.

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

Required methods

fn unsigned_pow(self, exp: u32) -> Self

Raises self to the power of exp.

Loading content...

Implementors

impl UnsignedPow for i8[src]

impl UnsignedPow for i16[src]

impl UnsignedPow for i32[src]

impl UnsignedPow for i64[src]

impl UnsignedPow for isize[src]

impl UnsignedPow for u8[src]

impl UnsignedPow for u16[src]

impl UnsignedPow for u32[src]

impl UnsignedPow for u64[src]

impl UnsignedPow for usize[src]

Loading content...