Module Int.PArray
- type 'a t
- Persistent, auto-resizable arrays. The - getand- setfunctions never fail whenever the index is between- 0and- Sys.max_array_length - 1.
- val empty : int -> 'a t
- The empty array, with a given starting size. 
- val get : 'a t -> int -> 'a option
- Get a value at the given index. Returns - Noneif undefined.