pub fn is_meta_space_mapped(address: Address, size: usize) -> bool
Expand description

Check if metadata is mapped for a range [addr, addr + size). Metadata is mapped per chunk, we will go through all the chunks for [address, address + size), and check if they are mapped. If any of the chunks is not mapped, return false. Otherwise return true.