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.

CallingConvention

backend.CallingConvention
pub const CallingConvention = enum

File

lib/compiler/aro/backend.zig:7

Code

pub const CallingConvention = enum {
    c,
    stdcall,
    thiscall,
    vectorcall,
    fastcall,
    regcall,
    riscv_vector,
    aarch64_sve_pcs,
    aarch64_vector_pcs,
    arm_aapcs,
    arm_aapcs_vfp,
    x86_64_sysv,
    x86_64_win,
}