MhuIterableX<T> extension

on

Properties

allEqual bool
no setter
allEqualOrEmpty bool
no setter
tail Iterable<T>
no setter

Methods

allEqualCmp(bool equals(T a, T b)) bool
distinct() List<T>
distinctBy(dynamic identity(T e)) List<T>
maxBy<V>(V property(T element), {int compare(V, V)?}) → T?
separatedBy(T separator) Iterable<T>
zipForEachWith<V>(Iterable<V> other, void fn(T, V)) → void
zipMapWith<V, E>(Iterable<V> other, {required E mapper(T a, V b)}) Iterable<E>
zipWith<V>(Iterable<V> other) Iterable<(T, V)>