anyOf

fun <T> anyOf(matchers: List<Matcher<T>>): Matcher<T>
fun <T> anyOf(vararg matchers: Matcher<T>): Matcher<T>

Returns a matcher that matches if any of the supplied matchers match.