Interface IndexedSorter

All Known Implementing Classes:
HeapSort, QuickSort

@LimitedPrivate("MapReduce") @Unstable public interface IndexedSorter
Interface for sort algorithms accepting IndexedSortable items. A sort algorithm implementing this interface may only IndexedSortable.compare(int, int) and IndexedSortable.swap(int, int) items for a range of indices to effect a sort across that range.