flatMapToSet<T> method Null safety

Set<T> flatMapToSet<T>(
  1. Set<T> destination,
  2. Transform<E, Iterable<T>> f
)

Appends to the give destination with the elements yielded from results of transform f function being invoked on each element of original collection.

Implementation

Set<T> flatMapToSet<T>(Set<T> destination, Transform<E, Iterable<T>> f) {
  flatMap(f).forEach((e) => destination.add(e));
  return destination;
}