sortUnstable method

void sortUnstable()

Sorts the slice, but might not preserve the order of equal elements.

Implementation

@pragma("vm:prefer-inline")
void sortUnstable() {
  _quickSort<num>(this, _start, _end - 1);
}