Matches Iterables which are sorted.
Matcher isSorted<T extends Comparable<T>>() => _IsSorted<T, T>((t) => t, (a, b) => a.compareTo(b));