containsAnyOf<T> function

Matcher containsAnyOf<T>(
  1. Iterable<T> items
)

A matcher that checks if an iterable contains any of the given items.

Implementation

Matcher containsAnyOf<T>(Iterable<T> items) => _ContainsAnyOf<T>(items.toSet());