union method

Set<T> union(
  1. Iterable<T> others
)

Implementation

Set<T> union(Iterable<T> others) {
  return toSet();
}