conversion/common_conversion_definition library

Extensions

MapEx on Map<K, V>
StringEx on String

Functions

binarySearch<T extends Comparable<T>>(List<T?> sortedList, T? value, {int start = 0, int? end, int compare(T, T)?}) int
mergeSort<T>(List<T> list, {int start = 0, int? end, int compare(T, T)?}) → void
Sorts a list between start (inclusive) and end (exclusive) using the merge sort algorithm.