NdArrayGetMutFn

Type Alias NdArrayGetMutFn 

Source
pub type NdArrayGetMutFn = unsafe fn(array: PtrMut, index: usize) -> Option<PtrMut>;
Expand description

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

ยงSafety

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