Trait Pow

Source
pub trait Pow {
    type Output;

    // Required method
    fn pow(self, p: u64) -> Self::Output;
}
Expand description

累乗

Required Associated Types§

Source

type Output

powの結果の型

Required Methods§

Source

fn pow(self, p: u64) -> Self::Output

selfp乗を求める。

Implementors§