[−][src]Function git_features::parallel::in_parallel
pub fn in_parallel<I, S, O, R>(
input: impl Iterator<Item = I> + Send,
thread_limit: Option<usize>,
new_thread_state: impl Fn(usize) -> S + Send + Sync,
consume: impl Fn(I, &mut S) -> O + Send + Sync,
mut reducer: R
) -> Result<<R as Reducer>::Output, <R as Reducer>::Error> where
R: Reducer<Input = O>,
I: Send,
O: Send,
Read items from input and consume them, producing an output to be collected by a reducer, whose task is to
aggregate these outputs into the final result returned by this function.
- if
thread_limitisSome, the given amount of threads will be used. IfNone, all logical cores will be used. new_thread_state(thread_number) -> Stateproduces thread-local state once per thread to be based toconsumeconsume(Item, &mut State) -> Outputproduces an output given an input obtained byinputalong with mutable state initially created bynew_thread_state(…).- For
reducer, see theReducertrait