Module Int.PArray
type 'a tPersistent, auto-resizable arrays. The
getandsetfunctions never fail whenever the index is between0andSys.max_array_length - 1.
val empty : int -> 'a tThe empty array, with a given starting size.
val get : 'a t -> int -> 'a optionGet a value at the given index. Returns
Noneif undefined.