Trait ha_ndarray::ops::ElementwiseBoolean
source · pub trait ElementwiseBoolean<L, R, T>: PlatformInstance {
type Op: ReadOp<Self, u8>;
// Required methods
fn and(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
fn or(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
fn xor(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
}
Required Associated Types§
Required Methods§
fn and(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>
fn or(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>
fn xor(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>
Object Safety§
This trait is not object safe.