ArrayInstancePow

Trait ArrayInstancePow 

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

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

Defines an exponentiation method pow.

Required Associated Types§

Required Methods§

Source

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

Calculate the element-wise exponentiation.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§