pub trait ArrayInstanceProduct<T>: ArrayInstancewhere
    T: HasAfEnum,
    T::ProductOutType: DType,
{ type Product: HasAfEnum; fn product(&self) -> T::ProductOutType; fn product_dtype() -> NumberType { ... } }
Expand description

Defines common reduction operation product.

Required Associated Types§

Required Methods§

Calculate the cumulative product.

Provided Methods§

The NumberType of the product of this array.

Implementors§