ChainableKtSetExtensions<T> extension
- on
-
- KtSet<
T>
- KtSet<
Methods
-
onEach(
void action(T item)) → KtSet< T> -
Performs the given
action
on each element. Use with cascade syntax to return self. -
onEachIndexed(
void action(int index, T item)) → KtSet< T> - Performs the given action on each element, providing sequential index with the element, and returns the collection itself afterwards.