Trait rayon::slice::ParallelSlice [] [src]

pub trait ParallelSlice<T: Sync> {
    fn as_parallel_slice(&self) -> &[T];

    fn par_split<P>(&self, separator: P) -> Split<T, P>
    where
        P: Fn(&T) -> bool + Sync + Send
, { ... }
fn par_windows(&self, window_size: usize) -> Windows<T> { ... }
fn par_chunks(&self, chunk_size: usize) -> Chunks<T> { ... } }

Parallel extensions for slices.

Required Methods

Returns a plain slice, which is used to implement the rest of the parallel methods.

Provided Methods

Returns a parallel iterator over subslices separated by elements that match the separator.

Examples

use rayon::prelude::*;
let smallest = [1, 2, 3, 0, 2, 4, 8, 0, 3, 6, 9]
    .par_split(|i| *i == 0)
    .map(|numbers| numbers.iter().min().unwrap())
    .min();
assert_eq!(Some(&1), smallest);

Returns a parallel iterator over all contiguous windows of length size. The windows overlap.

Examples

use rayon::prelude::*;
let windows: Vec<_> = [1, 2, 3].par_windows(2).collect();
assert_eq!(vec![[1, 2], [2, 3]], windows);

Returns a parallel iterator over at most size elements of self at a time. The chunks do not overlap.

Examples

use rayon::prelude::*;
let chunks: Vec<_> = [1, 2, 3, 4, 5].par_chunks(2).collect();
assert_eq!(chunks, vec![&[1, 2][..], &[3, 4], &[5]]);

Implementations on Foreign Types

impl<T: Sync> ParallelSlice<T> for [T]
[src]

[src]

[src]

[src]

[src]

Implementors