Trait accurate::sum::traits::ParallelSumAccumulator [] [src]

pub trait ParallelSumAccumulator<F>: SumAccumulator<F> + Add<Self, Output = Self> + Send + Sized {
    fn into_consumer(self) -> SumConsumer<Self> { ... }
}

A SumAccumulator that can be used in parallel computations

Provided Methods

Turns an accumulator into a consumer

Implementors