MapInitInPlaceWithCapacityFn

Type Alias MapInitInPlaceWithCapacityFn 

Source
pub type MapInitInPlaceWithCapacityFn = unsafe fn(map: PtrUninit, capacity: usize) -> PtrMut;
Expand description

Initialize a map in place with a given capacity

ยงSafety

The map parameter must point to uninitialized memory of sufficient size. The function must properly initialize the memory.