enum BlockType [src]

Represents a block which will not return a value

Fields

empty = 0x40
i32 = 0x7F
i64 = 0x7E
f32 = 0x7D
f64 = 0x7C
v128 = 0x7B

Members

Source

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)); } }