[][src]Trait vector2math::Pow

pub trait Pow<P> {
    type Output;
    fn pow(self, power: P) -> Self::Output;
}

Trait for raising numbers to a power

Associated Types

type Output

The output type

Loading content...

Required methods

fn pow(self, power: P) -> Self::Output

Raise this number to a power

Loading content...

Implementations on Foreign Types

impl Pow<f32> for f32
[src]

type Output = Self

impl Pow<f64> for f64
[src]

type Output = Self

Loading content...

Implementors

Loading content...