orderedEquals function

Matcher orderedEquals(
  1. Iterable expected
)

Returns a matcher which matches Iterables that have the same length and the same elements as expected, in the same order.

This is equivalent to equals but does not recurse.

Implementation

Matcher orderedEquals(Iterable expected) => _OrderedEquals(expected);