Trait rayon::par_iter::internal::Reducer
[−]
[src]
pub trait Reducer<Result> {
fn reduce(self, left: Result, right: Result) -> Result;
}
Required Methods
fn reduce(self, left: Result, right: Result) -> Result
Reduce two final results into one; this is executed after a split.
Implementors
impl Reducer<()> for NoopReducer