[][src]Trait series::ops::Pow

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

Trait for powers

Associated Types

type Output

Loading content...

Required methods

fn pow(self, _exponent: T) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Pow<f64> for f64[src]

type Output = Self

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

type Output = f64

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

type Output = f64

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

type Output = f64

impl Pow<i32> for f64[src]

type Output = Self

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

type Output = f64

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

type Output = f64

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

type Output = f64

impl Pow<f32> for f32[src]

type Output = Self

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

type Output = f32

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

type Output = f32

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

type Output = f32

impl Pow<i32> for f32[src]

type Output = Self

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

type Output = f32

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

type Output = f32

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

type Output = f32

Loading content...

Implementors

impl<'a, Var, C: Coeff, T> Pow<T> for &'a Series<Var, C> where
    SeriesSlice<'b, Var, C>: Ln<Output = Series<Var, C>>,
    Series<Var, C>: Mul<T>,
    <Series<Var, C> as Mul<T>>::Output: Exp
[src]

type Output = <<Series<Var, C> as Mul<T>>::Output as Exp>::Output

impl<'a, Var, C: Coeff, T> Pow<T> for SeriesSlice<'a, Var, C> where
    SeriesSlice<'b, Var, C>: Ln<Output = Series<Var, C>>,
    Series<Var, C>: Mul<T>,
    <Series<Var, C> as Mul<T>>::Output: Exp
[src]

type Output = <<Series<Var, C> as Mul<T>>::Output as Exp>::Output

impl<Var, C: Coeff, T> Pow<T> for Series<Var, C> where
    Series<Var, C>: Ln,
    <Series<Var, C> as Ln>::Output: Mul<T>,
    <<Series<Var, C> as Ln>::Output as Mul<T>>::Output: Exp
[src]

type Output = <<<Series<Var, C> as Ln>::Output as Mul<T>>::Output as Exp>::Output

Loading content...