par-iter 2.0.0

Fork of rayon, with chili support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The rayon prelude imports the various `ParallelIterator` traits.
//! The intention is that one can include `use par_iter::prelude::*` and
//! have easy access to the various traits and methods you will need.

pub use crate::{
    iter::{
        FromParallelIterator, IndexedParallelIterator, IntoParallelIterator,
        IntoParallelRefIterator, IntoParallelRefMutIterator, ParallelDrainFull, ParallelDrainRange,
        ParallelExtend, ParallelIterator,
    },
    slice::{ParallelSlice, ParallelSliceMut},
    str::ParallelString,
};