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