pub type ArrayGetItemPtrFn = unsafe fn(array: PtrConst<'_>, index: usize) -> PtrConst<'_>;Expand description
Get pointer to the item at the given index. Panics if out of bounds.
ยงSafety
The array parameter must point to aligned, initialized memory of the correct type.