pub trait HasArrayExt where
    Self: HasAfEnum
{ fn product_one() -> <Self as HasAfEnum>::ProductOutType; fn zero_sum() -> <Self as HasAfEnum>::AggregateOutType; fn zero_cmp() -> Self; }
Expand description

Convenience methods defining the base value of a reduce operation on an ArrayExt.

Required Methods

The base value of a product operation.

The base value of a sum operation.

The base value of a comparison (min or max).

Implementations on Foreign Types

Implementors