Trait ChunkCompareIneq

Source
pub trait ChunkCompareIneq<Rhs> {
    type Item;

    // Required methods
    fn gt(&self, rhs: Rhs) -> Self::Item;
    fn gt_eq(&self, rhs: Rhs) -> Self::Item;
    fn lt(&self, rhs: Rhs) -> Self::Item;
    fn lt_eq(&self, rhs: Rhs) -> Self::Item;
}
Expand description

Compare Series and ChunkedArray’s using inequality operators (<, >=, etc.) and get a boolean mask that can be used to filter rows.

Required Associated Types§

Required Methods§

Source

fn gt(&self, rhs: Rhs) -> Self::Item

Greater than comparison.

Source

fn gt_eq(&self, rhs: Rhs) -> Self::Item

Greater than or equal comparison.

Source

fn lt(&self, rhs: Rhs) -> Self::Item

Less than comparison.

Source

fn lt_eq(&self, rhs: Rhs) -> Self::Item

Less than or equal comparison

Implementors§