pub trait ArrayInstancePow<U>: ArrayInstance {
    type Pow: HasAfEnum;

    fn pow(&self, other: &U) -> ArrayExt<Self::Pow>;
}
Expand description

Defines an exponentiation method pow.

Required Associated Types

Required Methods

Calculate the element-wise exponentiation.

Implementors