pub type MapGetValuePtrFn = unsafe fn(map: PtrConst, key: PtrConst) -> Option<PtrConst>;Expand description
Get pointer to a value for a given key, returns None if not found
ยงSafety
The map parameter must point to aligned, initialized memory of the correct type.