sumByDouble
inline fun <T> Iterable<T>.sumByDouble(
selector: (T) -> Double
): Double
Returns the sum of all values produced by selector function applied to each element in the collection.
inline fun <T> Array<out T>.sumByDouble(
selector: (T) -> Double
): Double
inline fun