pub trait BooleanArrayIntoParallelIterator {
    type Iter: IntoParallelIterator<Item = Option<bool>>;

    // Required method
    fn into_par_iter(self) -> Self::Iter;
}

Required Associated Types§

Required Methods§

source

fn into_par_iter(self) -> Self::Iter

Implementations on Foreign Types§

source§

impl BooleanArrayIntoParallelIterator for BooleanArray

Implementors§