ascendingList<T> function

List<T> ascendingList<T>(
  1. Iterable<T> it
)

Regular sorted list.

Implementation

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