ListGetFn

Type Alias ListGetFn 

Source
pub type ListGetFn = unsafe fn(PtrConst<'_>, usize) -> Option<PtrConst<'_>>;
Expand description

Get pointer to the element at index in the list, or None if the index is out of bounds.

ยงSafety

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