IterableExt<E> extension
- on
-
- Iterable<
E>
- Iterable<
Properties
Methods
-
separate<
To> ({required To convert(E), required To separator, int groupSize = 1}) → Iterable< To> -
Available on Iterable<
ApplyE> , provided by the IterableExt extensionconvertto each item and insert theseparatorbetween each<groupSize>items (not including the beginning and the end). -
separateToList<
To> ({required To convert(E), required To separator, int groupSize = 1}) → List< To> -
Available on Iterable<
Shortcut forE> , provided by the IterableExt extensionseparate(..).toList().