module Array_slice: CCArray_slicetype'asequence =('a -> unit) -> unit
type'aklist =unit -> [ `Cons of 'a * 'a klist | `Nil ]
type'agen =unit -> 'a option
type'aequal ='a -> 'a -> bool
type'aord ='a -> 'a -> int
type'arandom_gen =Random.State.t -> 'a
type'aprinter =Format.formatter -> 'a -> unit
type 'a t 
'aval empty : 'a t
val equal : 'a equal -> 'a t equal
val compare : 'a ord -> 'a t ord
val get : 'a t -> int -> 'a
val get_safe : 'a t -> int -> 'a optionget_safe a i returns Some a.(i) if i is a valid indexval make : 'a array -> int -> len:int -> 'a tInvalid_argument if the slice isn't validval of_slice : 'a array * int * int -> 'a t(arr, i, len) where arr is the array,
    i the offset in arr, and len the number of elements of the slice.Invalid_argument if the slice isn't valid (See CCArray_slice.make)val to_slice : 'a t -> 'a array * int * int(arr, i, len) where len is the length of
    the subarray of arr starting at offset ival to_list : 'a t -> 'a listval full : 'a array -> 'a tval underlying : 'a t -> 'a arrayval copy : 'a t -> 'a arrayval sub : 'a t -> int -> int -> 'a tval set : 'a t -> int -> 'a -> unit
val length : 'a t -> int
val fold : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
val foldi : ('a -> int -> 'b -> 'a) -> 'a -> 'b t -> 'aval fold_while : ('a -> 'b -> 'a * [ `Continue | `Stop ]) -> 'a -> 'b t -> 'a('a, `Stop) is
    indicated by the accumulatorval iter : ('a -> unit) -> 'a t -> unit
val iteri : (int -> 'a -> unit) -> 'a t -> unit
val blit : 'a t -> int -> 'a t -> int -> int -> unitblit from i into j len copies len elements from the first array
    to the second. See Array.blit.val reverse_in_place : 'a t -> unitval sorted : ('a -> 'a -> int) -> 'a t -> 'a arraysorted cmp a makes a copy of a and sorts it with cmp.val sort_indices : ('a -> 'a -> int) -> 'a t -> int arraysort_indices cmp a returns a new array b, with the same length as a,
    such that b.(i) is the index of the i-th element of a in sort cmp a.
    In other words, map (fun i -> a.(i)) (sort_indices a) = sorted cmp a.
    a is not modified.val sort_ranking : ('a -> 'a -> int) -> 'a t -> int arraysort_ranking cmp a returns a new array b, with the same length as a,
    such that b.(i) is the position in sorted cmp a of the i-th
    element of a.
    a is not modified.
    In other words, map (fun i -> (sorted cmp a).(i)) (sort_ranking cmp a) = a.
    Without duplicates, we also have
    lookup_exn a.(i) (sorted a) = (sorted_ranking a).(i)
Since 1.0
val find : ('a -> 'b option) -> 'a t -> 'b optionfind f a returns Some y if there is an element x such
    that f x = Some y, else it returns Noneval findi : (int -> 'a -> 'b option) -> 'a t -> 'b option
val find_idx : ('a -> bool) -> 'a t -> (int * 'a) optionfind_idx p x returns Some (i,x) where x is the i-th element of l,
    and p x holds. Otherwise returns Noneval lookup : ?cmp:'a ord -> 'a -> 'a t -> int optionNone if the key is not present, or
      Some i (i the index of the key) otherwiseval lookup_exn : ?cmp:'a ord -> 'a -> 'a t -> int
val bsearch : ?cmp:('a -> 'a -> int) ->
       'a ->
       'a t ->
       [ `All_bigger | `All_lower | `At of int | `Empty | `Just_after of int ]bsearch ?cmp x arr finds the index of the object x in the array arr,
    provided arr is sorted using cmp. If the array is not sorted,
    the result is not specified (may raise Invalid_argument).
    Complexity: O(log n) where n is the length of the array
    (dichotomic search).
Since 0.13
Raises Invalid_argument if the array is found to be unsorted w.r.t cmp
Returns - `At i if cmp arr.(i) x = 0 (for some i)
`All_lower if all elements of arr are lower than x`All_bigger if all elements of arr are bigger than x`Just_after i if arr.(i) < x < arr.(i+1)`Empty if the array is emptyval for_all : ('a -> bool) -> 'a t -> bool
val for_all2 : ('a -> 'b -> bool) -> 'a t -> 'b t -> boolInvalid_argument if they have distinct lengths
    allow different typesval exists : ('a -> bool) -> 'a t -> bool
val exists2 : ('a -> 'b -> bool) -> 'a t -> 'b t -> boolInvalid_argument if they have distinct lengths
    allow different typesval fold2 : ('acc -> 'a -> 'b -> 'acc) ->
       'acc -> 'a t -> 'b t -> 'accInvalid_argument if they have distinct lengthsval iter2 : ('a -> 'b -> unit) -> 'a t -> 'b t -> unitInvalid_argument if they have distinct lengthsval shuffle : 'a t -> unitval shuffle_with : Random.State.t -> 'a t -> unitval random_choose : 'a t -> 'a random_genNot_found if the array/slice is emptyval to_seq : 'a t -> 'a sequence
val to_gen : 'a t -> 'a gen
val to_klist : 'a t -> 'a klistval pp : ?sep:string ->
       'a printer -> 'a t printerval pp_i : ?sep:string ->
       (int -> 'a printer) -> 'a t printer