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§
Implementors§
Source§impl ChunkCompareIneq<&Column> for Column
impl ChunkCompareIneq<&Column> for Column
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl ChunkCompareIneq<&str> for CategoricalChunked
Available on crate feature dtype-categorical only.
impl ChunkCompareIneq<&str> for CategoricalChunked
Available on crate feature
dtype-categorical only.type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl ChunkCompareIneq<&str> for Series
impl ChunkCompareIneq<&str> for Series
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl ChunkCompareIneq<&str> for StringChunked
impl ChunkCompareIneq<&str> for StringChunked
type Item = ChunkedArray<BooleanType>
Source§impl ChunkCompareIneq<&CategoricalChunked> for CategoricalChunked
Available on crate feature dtype-categorical only.
impl ChunkCompareIneq<&CategoricalChunked> for CategoricalChunked
Available on crate feature
dtype-categorical only.type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl ChunkCompareIneq<&Series> for Series
impl ChunkCompareIneq<&Series> for Series
type Item = Result<ChunkedArray<BooleanType>, PolarsError>
Source§impl ChunkCompareIneq<&ChunkedArray<BinaryType>> for BinaryChunked
impl ChunkCompareIneq<&ChunkedArray<BinaryType>> for BinaryChunked
type Item = ChunkedArray<BooleanType>
Source§impl ChunkCompareIneq<&ChunkedArray<BooleanType>> for BooleanChunked
impl ChunkCompareIneq<&ChunkedArray<BooleanType>> for BooleanChunked
type Item = ChunkedArray<BooleanType>
Source§impl ChunkCompareIneq<&ChunkedArray<StringType>> for CategoricalChunked
Available on crate feature dtype-categorical only.
impl ChunkCompareIneq<&ChunkedArray<StringType>> for CategoricalChunked
Available on crate feature
dtype-categorical only.