Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

asc

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

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

File

lib/std/sort.zig:132

Code

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;
}