minusElement

inline fun <T> Sequence<T>.minusElement(element: T): Sequence<T>(source)

Returns a sequence containing all elements of the original sequence without the first occurrence of the given element.

The operation is intermediate and stateless.

Since Kotlin

1.0