DoubleIterableExtensions extension

Extension on Iterable<double> to provide additional properties and methods specifically for lists of doubles.

on

Methods

biggestOccurrence() double?

Available on Iterable<double>, provided by the DoubleIterableExtensions extension

Finds the biggest occurrence in the list.
leastOccurrences() → (double, int)?

Available on Iterable<double>, provided by the DoubleIterableExtensions extension

Finds the least common value in the list.
mostOccurrences() → (double, int)?

Available on Iterable<double>, provided by the DoubleIterableExtensions extension

Finds the most common value in the list.
smallestOccurrence() double?

Available on Iterable<double>, provided by the DoubleIterableExtensions extension

Finds the smallest occurrence in the list.