IterableNumDartExtension<T extends num> extension

on

Methods

average() double
Calculate the average of all numbers in the collection
divide(T number) Iterable<double>
Divide number to all items in the collection
divideAll() double
Calculate the division of all numbers in the collection
multiply(T number) Iterable<T>
Multiply number to all items in the collection
multiplyAll() → T
Calculate the multiplication of all numbers in the collection
subtract(T number) Iterable<T>
Subtract number to all items in the collection
subtractAll() → T
Calculate the subtraction of all numbers in the collection
sum(T number) Iterable<T>
Sum number to all items in the collection
sumAll() → T
Calculate the sum of all numbers in the collection