plus method
Returns a set containing all elements of the original collection and then
all elements of the given elements collection.
Implementation
@useResult
KtSet<T> plus(KtIterable<T> elements) {
  final result = KtMutableSet<T>.of();
  result.addAll(asIterable());
  result.addAll(elements);
  return result;
}