Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
items.subList(i, j).sort(Comparable::compareTo);
ArraySort(@items[i], @items[j-1], elemsize, @c, @exchangeproc);
ArraySort is agnostic of the type of elements in the array it sorts, so it needs to know the size of an item (elemsize), as well as a reference to a procedure that exchanges items (exchangeproc).
items[i..j] = items[i..j].sort_by{|el| c(el) }
c should result in something comparable, so it is determinable if one result is larger, equal or smaller than another result.