sig
  type 'a t
  val make : 'a array -> int -> len:int -> 'a CCArray.Sub.t
  val of_slice : 'a array * int * int -> 'a CCArray.Sub.t
  val to_slice : 'a CCArray.Sub.t -> 'a array * int * int
  val full : 'a array -> 'a CCArray.Sub.t
  val underlying : 'a CCArray.Sub.t -> 'a array
  val copy : 'a CCArray.Sub.t -> 'a array
  val sub : 'a CCArray.Sub.t -> int -> int -> 'a CCArray.Sub.t
  val 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 option
  val 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 -> 'a
  val fold_while :
    ('a -> 'b -> 'a * [ `Continue | `Stop ]) -> 'a -> 'b t -> 'a
  val iter : ('a -> unit) -> 'a t -> unit
  val iteri : (int -> 'a -> unit) -> 'a t -> unit
  val blit : 'a t -> int -> 'a t -> int -> int -> unit
  val reverse_in_place : 'a t -> unit
  val find : ('a -> 'b option) -> 'a t -> 'b option
  val findi : (int -> 'a -> 'b option) -> 'a t -> 'b option
  val find_idx : ('a -> bool) -> 'a t -> (int * 'a) option
  val lookup : ?cmp:'a ord -> 'a -> 'a t -> int option
  val 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 ]
  val for_all : ('a -> bool) -> 'a t -> bool
  val for_all2 : ('a -> 'b -> bool) -> 'a t -> 'b t -> bool
  val exists : ('a -> bool) -> 'a t -> bool
  val exists2 : ('a -> 'b -> bool) -> 'a t -> 'b t -> bool
  val fold2 : ('acc -> 'a -> 'b -> 'acc) -> 'acc -> 'a t -> 'b t -> 'acc
  val iter2 : ('a -> 'b -> unit) -> 'a t -> 'b t -> unit
  val shuffle : 'a t -> unit
  val shuffle_with : Random.State.t -> 'a t -> unit
  val random_choose : 'a t -> 'a random_gen
  val to_seq : 'a t -> 'a sequence
  val to_gen : 'a t -> 'a gen
  val to_klist : 'a t -> 'a klist
  val pp :
    ?sep:string -> (Buffer.t -> 'a -> unit) -> Buffer.t -> 'a t -> unit
  val pp_i :
    ?sep:string ->
    (Buffer.t -> int -> 'a -> unit) -> Buffer.t -> 'a t -> unit
  val print :
    ?sep:string ->
    (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit
end