pub trait ArrayInstanceCompare<U> {
    fn eq(&self, other: &U) -> ArrayExt<bool>;
    fn gt(&self, other: &U) -> ArrayExt<bool>;
    fn gte(&self, other: &U) -> ArrayExt<bool>;
    fn lt(&self, other: &U) -> ArrayExt<bool>;
    fn lte(&self, other: &U) -> ArrayExt<bool>;
    fn ne(&self, other: &U) -> ArrayExt<bool>;
}
Expand description

Defines element-wise comparison operations.

Required Methods§

Element-wise equality.

Element-wise greater-than comparison.

Element-wise greater-or-equal comparison

Element-wise less-than comparison.

Element-wise less-or-equal comparison.

Element-wise inequality.

Implementors§