fun h(a: Pair<Long, Long>?): Pair<Long, Long>?
(source)
Generates a final result from an aggregate value.
E.g.: in the case of arithmetic mean, a = <c,s> (the element count and their sum) h(a) = s/c (the arithmetic mean itself).
Return
the final result.