Android Utililty Methods Collection Average

List of utility methods to do Collection Average

Description

The list of methods to do Collection Average are organized into topic(s).

Method

intgetIntListAvg(Collection c)
get Int List Avg
return getIntListSum(c) / c.size();
LonggetLongListAvg(Collection c)
get Long List Avg
return getLongListSum(c) / c.size();