union method

Set<E> union (Set<E> other)

Implementation

Set<E> union(Set<E> other) {
  return _clone()..addAll(other);
}