union method

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

Implementation

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