pub trait NDArrayNumeric: NDArray + Sized{
type Output: Access<u8>;
// Required methods
fn is_inf(self) -> Result<Array<u8, Self::Output, Self::Platform>, Error>;
fn is_nan(self) -> Result<Array<u8, Self::Output, Self::Platform>, Error>;
}
Expand description
Float-specific array methods
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.