Sorter class
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Static Methods
-
bubbleSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ List<T>
-
-
bucketSort(List<double> list, {bool reverse = false})
→ List<double>
-
-
heapSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ void
-
-
insertionSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ List<T>
-
-
mergeSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ List<T>
-
-
quickSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ List<T>
-
-
radixSort(List<int> list, {bool reverse = false})
→ List<int>
-
-
selectionSort<T>(List<T> list, {Compare<T>? compare, bool reverse = false})
→ List<T>
-
-
sortColors(List<Color> colors, {bool reverse = false})
→ List<Color>
-
-
sortDateTimes(List<DateTime> dateTimes, {bool reverse = false})
→ List<DateTime>
-
-
sortEmails(List<String> emails, {bool includeDomain = false})
→ List<String>
-
-
sortFilesByName(Directory directory, {bool reverse = false})
→ List<File>
-
-
sortFirebaseDocumentsByField(List<DocumentSnapshot<Object?>> documents, String fieldName, {bool reverse = false})
→ List<DocumentSnapshot<Object?>>
-
-
sortGeographicData(List<GeoCoordinate> coordinates)
→ List<GeoCoordinate>
-
-
sortMap<K, V>(Map<K, V> map, {bool reverse = false})
→ Map<K, V>
-
-
sortMobileNumbersAsInt(List<int> numbers, {bool reverse = false})
→ List<int>
-
-
sortMobileNumbersAsString(List<String> numbers, {bool reverse = false})
→ List<String>
-
-
sortObjects<T>(List<T> objects, {bool compare(T a, T b)?})
→ List<T>
-
-
sortSet<T extends Comparable>(Set<T> set, {bool reverse = false})
→ Set<T>
-
-
sortUint8List(Uint8List list, {bool reverse = false})
→ Uint8List
-