fun h(a: Pair<Long, Long>?): Long
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).
a - the aggregate value.
a
Return the final result.