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
fn is_infinite(&self) -> ArrayExt<bool>
fn is_infinite(&self) -> ArrayExt<bool>
Element-wise check for infinite values.