package liquidsoap-lang

  1. Overview
  2. Docs
type meth = {
  1. name : string;
  2. optional : bool;
  3. scheme : var list * t;
  4. json_name : string option;
}
and t = [
  1. | `Constr of string * (variance * t) list
  2. | `List of t * [ `Object | `Tuple ]
  3. | `Tuple of t list
  4. | `Nullable of t
  5. | `Meth of meth * t
  6. | `Arrow of (bool * string * t) list * t
  7. | `Getter of t
  8. | `EVar of var
  9. | `UVar of var
  10. | `Ellipsis
  11. | `Range_Ellipsis
  12. | `Debug of string * t * string
]
and var = string * Constraints.t
OCaml

Innovation. Community. Security.