package containers

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type !'a t = {
  1. unit_ : 'a;
  2. bool_ : bool -> 'a;
  3. float_ : float -> 'a;
  4. int_ : int -> 'a;
  5. string_ : string -> 'a;
  6. list_ : 'a list -> 'a;
  7. record : (string * 'a) list -> 'a;
  8. tuple : 'a list -> 'a;
  9. sum : string -> 'a list -> 'a;
}
OCaml

Innovation. Community. Security.