Trait NDArrayUnaryBoolean

Source
pub trait NDArrayUnaryBoolean: NDArray + Sized {
    type Output: Access<u8>;

    // Required method
    fn not(self) -> Result<Array<u8, Self::Output, Self::Platform>, Error>;
}
Expand description

Unary boolean array operations

Required Associated Types§

Source

type Output: Access<u8>

The return type of a unary operation.

Required Methods§

Source

fn not(self) -> Result<Array<u8, Self::Output, Self::Platform>, Error>

Construct a boolean not operation.

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.

Implementors§