pub trait TakeIteratorNulls: Iterator<Item = Option<usize>> + TrustedLen {
    fn check_bounds(&self, bound: usize) -> Result<(), PolarsError>;
fn boxed_clone(
        &self
    ) -> Box<dyn TakeIteratorNulls<Item = Option<usize>>, Global>; }
This is supported on crate feature object only.

Required methods

Trait Implementations

Implementors