TODO: currently this just calls insertionSortContext. The block sort implementation
in this file needs to be adapted to use the sort context.
pub fn sortContext(a: usize, b: usize, context: anytype) void
pub fn sortContext(a: usize, b: usize, context: anytype) void {
std.sort.insertionContext(a, b, context);
}