Uses of Interface
org.codelibs.jhighlight.fastutil.booleans.BooleanComparator
-
Packages that use BooleanComparator Package Description org.codelibs.jhighlight.fastutil.booleans -
-
Uses of BooleanComparator in org.codelibs.jhighlight.fastutil.booleans
Methods in org.codelibs.jhighlight.fastutil.booleans with parameters of type BooleanComparator Modifier and Type Method Description static voidBooleanArrays. mergeSort(boolean[] a, int from, int to, BooleanComparator comp)Sorts the specified range of elements according to the order induced by the specified comparator using mergesort.static voidBooleanArrays. mergeSort(boolean[] a, int from, int to, BooleanComparator comp, boolean[] supp)Sorts the specified range of elements according to the order induced by the specified comparator using mergesort, using a given pre-filled support array.static voidBooleanArrays. mergeSort(boolean[] a, BooleanComparator comp)Sorts an array according to the order induced by the specified comparator using mergesort.static voidBooleanArrays. quickSort(boolean[] x, int from, int to, BooleanComparator comp)Sorts the specified range of elements according to the order induced by the specified comparator using quicksort.static voidBooleanArrays. quickSort(boolean[] x, BooleanComparator comp)Sorts an array according to the order induced by the specified comparator using quicksort.
-