Function remove

Source
pub unsafe fn remove(base_ptr: *mut u8, key_ptr: *const u8) -> bool
Expand description

Remove an entry from the map

§Safety

  • base_ptr must point to a valid initialized map
  • key_ptr must point to a valid key of the size specified in the map header

§Returns

true if the key was found and removed, false otherwise