mun_memory/gc/
array.rs

1/// An array in Mun is represented in memory by a header followed by the rest of the bytes.
2#[repr(C)]
3pub struct ArrayHeader {
4    pub length: usize,
5    pub capacity: usize,
6}