isSortedUsing<T> function
Matches Iterables which are compare-sorted.
Implementation
Matcher isSortedUsing<T>(Comparator<T> compare) =>
_IsSorted<T, T>((t) => t, compare);
Matches Iterables which are compare-sorted.
Matcher isSortedUsing<T>(Comparator<T> compare) =>
_IsSorted<T, T>((t) => t, compare);