Function sortContext [src]

TODO: currently this just calls insertionSortContext. The block sort implementation in this file needs to be adapted to use the sort context.

Prototype

pub fn sortContext(a: usize, b: usize, context: anytype) void

Parameters

a: usizeb: usize

Source

pub fn sortContext(a: usize, b: usize, context: anytype) void { std.sort.insertionContext(a, b, context); }