mun_memory 0.4.0

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