strikt-core / strikt.assertions / filterNot

filterNot

infix fun <T : Iterable<E>, E> Builder<T>.filterNot(predicate: (E) -> Boolean): Builder<List<E>>

Maps this assertion to an assertion over a list of all elements of the subject that do not match predicate.

See Also

Iterable.filter