Iaval empty : 'a tThe empty array.
val of_array : 'a array -> 'a t(of_array a) converts a mutable 'a array to an immutable 'a t.
val (!) : 'a array -> 'a t(!) is of_array.
The remainder of these functions are identical to those in Prelude.Array except that they are immutable.
val get : 'a t -> int -> 'aval init : int -> (int -> 'a) -> 'a tval iteri : (int -> 'a -> unit) -> 'a t -> unitval length : 'a t -> intval len : 'a t -> intval make : int -> 'a -> 'a tval create_float : int -> float tval to_list : 'a t -> 'a listval of_list : 'a list -> 'a tval iter : ('a -> unit) -> 'a t -> unitval fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'aval fold_right : ('b -> 'a -> 'a) -> 'b t -> 'a -> 'aval for_all : ('a -> bool) -> 'a t -> boolval exists : ('a -> bool) -> 'a t -> boolval mem : 'a -> 'a t -> boolval memq : 'a -> 'a t -> boolval foldl : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'aval foldr : ('a -> 'b -> 'b) -> 'b -> 'a t -> 'bval random : ?size:(unit -> int) -> (unit -> 'a) -> unit -> 'a t