DoubleIterableExtensions extension
Extension on Iterable<double> to provide additional properties and methods specifically for lists of doubles.
Methods
-
biggestOccurrence(
) → double? -
Available on Iterable<
Finds the biggest occurrence in the list.double> , provided by the DoubleIterableExtensions extension -
leastOccurrences(
) → (double, int)? -
Available on Iterable<
Finds the least common value in the list.double> , provided by the DoubleIterableExtensions extension -
mostOccurrences(
) → (double, int)? -
Available on Iterable<
Finds the most common value in the list.double> , provided by the DoubleIterableExtensions extension -
smallestOccurrence(
) → double? -
Available on Iterable<
Finds the smallest occurrence in the list.double> , provided by the DoubleIterableExtensions extension