assertk / assertk.assertions / any

any

(common, jvm) fun <E, T : Iterable<E>> Assert<T>.any(f: (Assert<E>) -> Unit): Unit

Asserts on each item in the iterable, passing if any of the items pass. The given lambda will be run for each item.

assert(listOf(-1, -2, 1)).any { it.isPositive() }