pub trait NDArrayReduceBoolean: NDArrayRead {
// Required methods
fn all(self) -> Result<bool, Error>;
fn any(self) -> Result<bool, Error>;
}Expand description
Boolean array reduce operations
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".