SortComparator<T> extension

on

Methods

sort(List<T> list, {int? start, int? end, bool stable = false}) → void

Available on Comparator<T>, provided by the SortComparator extension

Sorts the provided list in-place.
sorted(Iterable<T> iterable, {int? start, int? end, bool stable = false, bool growable = false}) List<T>

Available on Comparator<T>, provided by the SortComparator extension

Returns a sorted copy of the provided iterable.