Type Alias MapContainsKeyFn

Source
pub type MapContainsKeyFn = for<'map, 'key> unsafe fn(PtrConst<'map>, PtrConst<'key>) -> bool;
Expand description

Check if the map contains a key

ยงSafety

The map parameter must point to aligned, initialized memory of the correct type.