filterNot

Common
JVM
JS
Native
1.0
fun <T> Sequence<T>.filterNot(
    predicate: (T) -> Boolean
): Sequence<T>

Returns a sequence containing all elements not matching the given predicate.

The operation is intermediate and stateless.