fun g(v: Int?): Int?
(source)
Computes the aggregate value from an atomic value.
E.g.: in the case of arithmetic mean, v = 3 (a value of the DB-tree) -> g(v) = <1,3> (the count of elements and corresponding sum).
Return
the corresponding aggregate value.