pub trait TakeIteratorNulls: Iterator<Item = Option<usize>> + TrustedLen {
    // Required methods
    fn check_bounds(&self, bound: usize) -> PolarsResult<()>;
    fn boxed_clone(&self) -> Box<dyn TakeIteratorNulls + '_>;
}

Required Methods§

source

fn check_bounds(&self, bound: usize) -> PolarsResult<()>

source

fn boxed_clone(&self) -> Box<dyn TakeIteratorNulls + '_>

Trait Implementations§

Implementors§