kotest-assertions-core / io.kotest.matchers.sequences / containExactlyInAnyOrder

containExactlyInAnyOrder

fun <T> containExactlyInAnyOrder(vararg expected: T): Matcher<Sequence<T>?>
Deprecated: use containAllInAnyOrder

fun <T, C : Sequence<T>> containExactlyInAnyOrder(expected: C): Matcher<C?>
Deprecated: use containAllInAnyOrder

Assert that a sequence contains the given values and nothing else, in any order.