pub trait IsIn {
    fn is_in(
        &self,
        _other: &Series
    ) -> Result<ChunkedArray<BooleanType>, PolarsError> { ... } }
Expand description

Check if element is member of list array

Provided Methods

Check if elements of this array are in the right Series, or List values of the right Series.

Implementors