[][src]Trait easy_ml::numeric::extra::Pow

pub trait Pow<Rhs = Self> {
    type Output;
    fn pow(self, rhs: Rhs) -> Self::Output;
}

A type which can compute self^rhs.

This is implemented by f32 and f64 for all combinations of by value and by reference.

Associated Types

type Output

Loading content...

Required methods

fn pow(self, rhs: Rhs) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Pow<f32> for f32[src]

type Output = f32

impl<'a> Pow<&'a f32> for f32[src]

type Output = f32

impl<'a> Pow<f32> for &'a f32[src]

type Output = f32

impl<'a, 'b> Pow<&'b f32> for &'a f32[src]

type Output = f32

impl Pow<f64> for f64[src]

type Output = f64

impl<'a> Pow<&'a f64> for f64[src]

type Output = f64

impl<'a> Pow<f64> for &'a f64[src]

type Output = f64

impl<'a, 'b> Pow<&'b f64> for &'a f64[src]

type Output = f64

Loading content...

Implementors

Loading content...