operator + method

  1. @useResult
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

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