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.