len_lo: u32
len_hi: u32
child: Type
pub const Array = extern struct { len_lo: u32, len_hi: u32, child: Type, fn length(self: Array) u64 { return @as(u64, self.len_hi) << 32 | self.len_lo; } }
Press escape to exit search and then '?' to see more options.