const IdAndValue = struct
const IdAndValue = struct { id: usize, value: i32, fn lessThan(context: void, a: IdAndValue, b: IdAndValue) bool { _ = context; return a.value < b.value; } }