pub fn quick_sort<T, F>(arr: &mut [T], less: &F)Expand description
Sort a mutable slice using AGG’s quicksort algorithm. Uses insertion sort for small partitions.
This is a direct port of C++ quick_sort from agg_array.h.
For most Rust code you’d use slice::sort_by, but this is provided
for exact behavioral matching where sort order matters.