GeneralIterableExtensions<T> extension
- on
-
- Iterable<
T>
- Iterable<
Methods
-
containsAll(
Iterable< T> other) → bool -
Available on Iterable<
Returns true if this iterable contains all elements fromT> , provided by the GeneralIterableExtensions extensionother. -
countWhere(
bool predicate(T)) → int -
Available on Iterable<
Counts elements that satisfy the givenT> , provided by the GeneralIterableExtensions extensionpredicate. -
leastOccurrences(
) → (T, int)? -
Available on Iterable<
Find the most common value in the list.T> , provided by the GeneralIterableExtensions extension -
mostOccurrences(
) → (T, int)? -
Available on Iterable<
Finds the most common value in the list.T> , provided by the GeneralIterableExtensions extension -
randomElement(
) → T? -
Available on Iterable<
Returns a random element from this iterable.T> , provided by the GeneralIterableExtensions extension