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.

InitExpression

Initialization expressions are used to set the initial value on an object when a wasm module is being loaded.

wasm.InitExpression
pub const InitExpression = union(enum)

File

lib/std/wasm.zig:592

Code

pub const InitExpression = union(enum) {
    i32_const: i32,
    i64_const: i64,
    f32_const: f32,
    f64_const: f64,
    global_get: u32,
}