package containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | K of string * t
  2. | I of int
  3. | S of string
  4. | L of t list
val eq : t -> t -> bool
val compare : t -> t -> int
val hash : t -> int
val to_buf : Buffer.t -> t -> unit
val to_string : t -> string
val fmt : Format.formatter -> t -> unit
type decoder
val mk_decoder : unit -> decoder
type parse_result =
  1. | ParseOk of t
  2. | ParseError of string
  3. | ParsePartial
val parse : decoder -> string -> int -> int -> parse_result
val reset : decoder -> unit
val state : decoder -> parse_result
val rest : decoder -> string
val rest_size : decoder -> int
val parse_string : string -> parse_result
val of_string : string -> t
OCaml

Innovation. Community. Security.