operator - method
Returns a set containing all elements of the original collection except
the elements contained in the given elements
collection.
Implementation
@useResult
KtSet<T> operator -(KtIterable<T> elements) => minus(elements);
Returns a set containing all elements of the original collection except
the elements contained in the given elements
collection.
@useResult
KtSet<T> operator -(KtIterable<T> elements) => minus(elements);