Trait afarray::ArrayInstancePow[][src]

pub trait ArrayInstancePow: ArrayInstance {
    type Exp: HasAfEnum;
    type Pow: HasAfEnum;
    fn exp(&self) -> ArrayExt<Self::Exp>;
fn pow(&self, other: &Self) -> ArrayExt<Self::Pow>; }
Expand description

Defines an exponentiation method pow.

Associated Types

Required methods

Raise e to the power of self.

Calculate the element-wise exponentiation.

Implementors