IntIterableExtensions extension
Methods
-
average(
) → double -
Available on Iterable<
Calculate the average using all values in the int list.int> , provided by the IntIterableExtensions extension -
max(
) → int -
Available on Iterable<
Calculate the maximum value in the int list.int> , provided by the IntIterableExtensions extension -
min(
) → int -
Available on Iterable<
Calculate the minimum value in the int list.int> , provided by the IntIterableExtensions extension -
nearestOrNull(
num point) → int? -
Available on Iterable<
Get the closest int toint> , provided by the IntIterableExtensions extensionpoint
in the int array. -
smoothing(
{int n = 3}) → List< double> -
Available on Iterable<
Smooth this array withint> , provided by the IntIterableExtensions extensionn
moving averages. -
standardDeviation(
) → double -
Available on Iterable<
Calculate the standard deviation using all values in the int list.int> , provided by the IntIterableExtensions extension -
sum(
) → int -
Available on Iterable<
Calculate the sum using all values in the int list.int> , provided by the IntIterableExtensions extension -
variance(
) → double -
Available on Iterable<
Calculate the variance using all the values in the list of int.int> , provided by the IntIterableExtensions extension