sumByDouble method

  1. @Deprecated("Use sumBy")
double sumByDouble(
  1. double selector(
    1. T
    )
)

Returns the sum of all values produced by selector function applied to each element in the collection.

Implementation

@Deprecated("Use sumBy")
double sumByDouble(double Function(T) selector) {
  return sumBy(selector);
}