Trait afarray::ArrayInstanceAnyAll[][src]

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