Trait polars::chunked_array::object::IntoNoNullIterator[][src]

pub trait IntoNoNullIterator {
    type Item;
    type IntoIter: Iterator;
    fn into_no_null_iter(self) -> Self::IntoIter;
}
Expand description

Trait for ChunkedArrays that don’t have null values. The result is the most efficient implementation Iterator, according to the number of chunks.

Associated Types

Required methods

Implementors