pub type SetContainsFn = for<'set, 'value> unsafe fn(set: PtrConst<'set>, value: PtrConst<'value>) -> bool;Expand description
Check if the set contains a value
ยงSafety
The set parameter must point to aligned, initialized memory of the correct type.