package camltemplate

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type tvalue =
  1. | Tnull
  2. | Tstr of string
  3. | Tint of int
  4. | Tfloat of float
  5. | Tbool of bool
  6. | Tlist of tlist
  7. | Thash of thash
  8. | Tfun of tfun
and tlist = tvalue list
and thash = (string, tvalue) Hashtbl.t
and tfun = args:tvalue list -> tvalue
exception Tfun_error of string