mapToSetIndexed<T> method
Null safety
- Set<
T> destination, - IndexedTransform<
E, T> f
Transforms elements to objects of type T
with the transformer f
,
providing sequential index of the element, and appends the result to the given destination
.
Implementation
Set<T> mapToSetIndexed<T>(Set<T> destination, IndexedTransform<E, T> f) {
if (this != null) mapIndexed(f).forEach((e) => destination.add(e));
return destination;
}