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.

FUTEX_WAKE_OP_CMP

Futex v1 comparison op for FUTEX_WAKE_OP val3 cmp

linux.FUTEX_WAKE_OP_CMP
pub const FUTEX_WAKE_OP_CMP = enum(u4)

File

lib/std/os/linux.zig:4262

Code

pub const FUTEX_WAKE_OP_CMP = enum(u4) {
    EQ = 0,
    NE = 1,
    LT = 2,
    LE = 3,
    GT = 4,
    GE = 5,
}