Struct rayon::par_iter::slice::SliceChunksProducer
[−]
[src]
pub struct SliceChunksProducer<'data, T: 'data + Sync> {
// some fields omitted
}Trait Implementations
impl<'data, T: 'data + Sync> Producer for SliceChunksProducer<'data, T>[src]
fn cost(&mut self, len: usize) -> f64
Cost to produce len items, where len must be N.
fn split_at(self, index: usize) -> (Self, Self)
Split into two producers; one produces items 0..index, the other index..N. Index must be less than N. Read more