module CCArray:sig..end
type'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
module type S =sig..end
type'at ='a array
include CCArray.S
val map : ('a -> 'b) -> 'a t -> 'b t
val filter : ('a -> bool) -> 'a t -> 'a tval filter_map : ('a -> 'b option) -> 'a t -> 'b tval flat_map : ('a -> 'b t) -> 'a t -> 'b arrayval (>>=) : 'a t -> ('a -> 'b t) -> 'b tCCArray.flat_mapval (>>|) : 'a t -> ('a -> 'b) -> 'b t
val (>|=) : 'a t -> ('a -> 'b) -> 'b t
val except_idx : 'a t -> int -> 'a listval (--) : int -> int -> int tval (--^) : int -> int -> int tval random : 'a random_gen -> 'a t random_gen
val random_non_empty : 'a random_gen -> 'a t random_gen
val random_len : int -> 'a random_gen -> 'a t random_gen
All indexing in a slice is relative to the beginning of a slice, not
to the underlying array (meaning a slice is effectively like
a regular array)
module Sub:sig..end
module type MONO_ARRAY =sig..end
val sort_generic : (module CCArray.MONO_ARRAY with type elt = 'elt and type t = 'arr) ->
?cmp:('elt -> 'elt -> int) -> 'arr -> unitArray.sort.