Type Alias SetInitInPlaceWithCapacityFn

Source
pub type SetInitInPlaceWithCapacityFn = for<'mem> unsafe fn(set: PtrUninit<'mem>, capacity: usize) -> PtrMut<'mem>;
Expand description

Initialize a set in place with a given capacity

ยงSafety

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