fn pdqContext(a: usize, b: usize, context: anytype) void

Unstable in-place sort. O(n) best case, O(n*log(n)) worst case and average case. O(log(n)) memory (no allocator required). context must have methods swap and lessThan, which each take 2 usize parameters indicating the index of an item. Sorts in ascending order with respect to lessThan.

Parameters

a: usize,
b: usize,
context: anytype,