operator + method

KtSet<T> operator +(
  1. KtIterable<T> elements
)

Returns a set containing all elements of the original collection and then all elements of the given elements collection.

Implementation

KtSet<T> operator +(KtIterable<T> elements) => plus(elements);