Analyze.LargeArray
A data structure similar to arrays but allowing to overcome the 2^22 length limitation on 32-bit architecture.
type 'a t
val empty : 'a t
val length : 'a t -> int
val make : int -> 'a -> 'a t
val get : 'a t -> int -> 'a
val set : 'a t -> int -> 'a -> unit