pub type DynArrayGetFn = unsafe fn(value: PtrConst, index: usize) -> Option<PtrConst>;Expand description
Get an element from an array by index. Returns None if not an array or index out of bounds.
ยงSafety
value must point to an initialized dynamic value.