Note: Does not work on huge amounts of Integers.
(int... aInts)
| 1192 | |
| 1193 | /** Note: Does not work on huge amounts of Integers. */ |
| 1194 | public static int averageInts(int... aInts) { |
| 1195 | if (aInts == null || aInts.length <= 0) return 0; |
| 1196 | return bindInt(sum(aInts) / aInts.length); |
| 1197 | } |
| 1198 | |
| 1199 | /** Note: Does not work on huge amounts of Integers. */ |
| 1200 | public static int averageUnsignedInts(int... aInts) { |
no test coverage detected