count static method

  1. @Deprecated('call [MathUtils::sum]')
int count(
  1. List<int> array
)

@param array values to sum @return sum of values @deprecated call {@link MathUtils#sum(List

Implementation

// @protected
@Deprecated('call [MathUtils::sum]')
static int count(List<int> array) {
  return MathUtils.sum(array);
}