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.

RefType

Reference types, where the funcref references to a function regardless of its type and ref references an object from the embedder.

wasm.RefType
pub const RefType = enum(u8)

File

lib/std/wasm.zig:572

Code

pub const RefType = enum(u8) {
    funcref = 0x70,
    externref = 0x6F,
}