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.

Object Safety§

This trait is not object safe.

Implementors§