operator - method

  1. @useResult
KtList<T> operator -(
  1. KtIterable<T> elements
)

Returns a list containing all elements of the original collection except the elements contained in the given elements collection.

Implementation

@useResult
KtList<T> operator -(KtIterable<T> elements) => minus(elements);