Represents a block which will not return a value
empty = 0x40
i32 = 0x7F
i64 = 0x7E
f32 = 0x7D
f64 = 0x7C
v128 = 0x7B
pub fn fromValtype(valtype: Valtype) BlockType
valtype: Valtype
pub fn fromValtype(valtype: Valtype) BlockType { return @enumFromInt(@intFromEnum(valtype)); }
pub const BlockType = enum(u8) { empty = 0x40, i32 = 0x7F, i64 = 0x7E, f32 = 0x7D, f64 = 0x7C, v128 = 0x7B, pub fn fromValtype(valtype: Valtype) BlockType { return @enumFromInt(@intFromEnum(valtype)); } }
Press escape to exit search and then '?' to see more options.