minusElement (original) (raw)
inline fun <T> Iterable<T>.minusElement(element: T): List<T>(source)
Returns a list containing all elements of the original collection without the first occurrence of the given element.
Since Kotlin
1.0
inline fun <T> Set<T>.minusElement(element: T): Set<T>(source)
Returns a set containing all elements of the original set except the given element.
The returned set preserves the element iteration order of the original set.
Since Kotlin
1.0