Trait float::Powf[][src]

pub trait Powf {
    fn powf(self, other: Self) -> Self;
}
[]

Floating number power.

Required methods

fn powf(self, other: Self) -> Self[src][]

Returns floating power of the number.

Implementations on Foreign Types

impl Powf for f32[src][]

impl Powf for f64[src][]

Implementors