package dyntype

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Unit
  2. | Int of int64
  3. | Bool of bool
  4. | Float of float
  5. | String of string
  6. | Enum of t list
  7. | Tuple of t list
  8. | Dict of (string * t) list
  9. | Sum of string * t list
  10. | Null
  11. | Value of t
  12. | Arrow of string
  13. | Rec of string * int64 * t
  14. | Var of string * int64
  15. | Ext of string * int64 * t
val free_vars : t -> (string * int64) list
val equal : t -> t -> bool
val to_string : t -> string
exception Parse_error of string
val of_string : string -> t
OCaml

Innovation. Community. Security.