Module Immutable_array
Immutable array: array are created at creation time, and never modified after this. Actually uses Array.
val length : 'a t -> intval get : 'a t -> int -> 'aval init : int -> (int -> 'a) -> 'a tval empty : 'a tval iter : ('a -> unit) -> 'a t -> unitval iteri : (int -> 'a -> unit) -> 'a t -> unitval fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'aval to_list : 'a t -> 'a listval of_list : 'a list -> 'a t