operator + method

ISet<T> operator +(
  1. Iterable<T> other
)

Returns the concatenation of this set and other. Returns a new set containing the elements of this set followed by the elements of other.

Implementation

ISet<T> operator +(Iterable<T> other) => addAll(other);