pub trait ArrayInstanceAnyAll: ArrayInstance {
    fn all(&self) -> bool { ... }
    fn any(&self) -> bool { ... }
}
Expand description

Defines cumulative boolean operations any and all.

Provided Methods

Returns true if all elements are nonzero.

Returns true if any element is nonzero.

Implementors