package containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'a gen = unit -> 'a option
type !'a sequence = ('a -> unit) -> unit
type !'a klist = unit -> [ `Cons of 'a * 'a klist | `Nil ]
module type S = sig ... end
type t = string
val equal : t -> t -> bool
val compare : t -> t -> int
val hash : t -> int
val init : int -> (int -> char) -> t
val of_gen : char gen -> t
val of_seq : char sequence -> t
val of_klist : char klist -> t
val of_list : char list -> t
val of_array : char array -> t
val to_array : t -> char array
val find : ?start:int -> sub:t -> t -> int
val is_sub : sub:t -> int -> t -> int -> len:int -> bool
val repeat : t -> int -> t
val prefix : pre:t -> t -> bool
val length : t -> int
val blit : t -> int -> t -> int -> int -> unit
val to_gen : t -> char gen
val to_seq : t -> char sequence
val to_klist : t -> char klist
val to_list : t -> char list
val pp : Buffer.t -> t -> unit
module Split : sig ... end
module Sub : sig ... end
OCaml

Innovation. Community. Security.