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