Aggregator<T> typedef
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);
Takes an accumulate and a value of type T
, then aggregates the value
into the accumulate and returns the result.
typedef T Aggregator<T>(T accumulate, T value);