parallel_filter

Function parallel_filter 

Source
pub fn parallel_filter<T, F>(items: &[T], f: F) -> Vec<&T>
where T: Sync, F: Fn(&T) -> bool + Sync + Send,
Expand description

Execute a filter operation in parallel