Function asc [src]

Use to generate a comparator function for a given type. e.g. sort(u8, slice, {}, asc(u8)).

Prototype

pub fn asc(comptime T: type) fn (void, T, T) bool

Parameters

T: type

Source

pub fn asc(comptime T: type) fn (void, T, T) bool { return struct { pub fn inner(_: void, a: T, b: T) bool { return a < b; } }.inner; }