sumByDouble method
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);
}
Returns the sum of all values produced by selector
function applied to each element in the collection.
@Deprecated("Use sumBy")
double sumByDouble(double Function(T) selector) {
return sumBy(selector);
}