Trait afarray::ArrayInstanceCompare[][src]

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

Defines element-wise comparison operations.

Required methods

Element-wise check for infinite values.

Element-wise check for non-numeric (NaN) values.

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