operator + method

Set<T> operator +(
  1. Set<T> other
)

Implementation

Set<T> operator +(Set<T> other) {
  return this..addAll(other);
}