Trait polars_core::chunked_array::ops::IsIn
source · pub trait IsIn {
fn is_in(&self, _other: &Series) -> PolarsResult<BooleanChunked> { ... }
}
Available on crate feature
is_in
only.Expand description
Check if element is member of list array
Provided Methods§
sourcefn is_in(&self, _other: &Series) -> PolarsResult<BooleanChunked>
fn is_in(&self, _other: &Series) -> PolarsResult<BooleanChunked>
Check if elements of this array are in the right Series, or List values of the right Series.
Implementors§
impl IsIn for StructChunked
Available on crate feature
dtype-struct
only.impl IsIn for BinaryChunked
Available on crate feature
dtype-binary
only.