Aggregator<T> typedef

T Aggregator (T accumulate, T value)

Takes an accumulate and a value of type T, then aggregates the value into the accumulate and returns the result.

Implementation

typedef T Aggregator<T>(T accumulate, T value);