Trait polars::prelude::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.