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