Regular sorted list.
List<T> ascendingList<T>(Iterable<T> it) { List<T> copy = List.from(it); copy.sort(); return copy; }