Trait rayon::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.