package lua-ml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type value =
  1. | Nil
  2. | Number of float
  3. | String of string
  4. | Function of srcloc * func
  5. | Userdata of userdata
  6. | Table of table
and func = value list -> value list
and table = value Luahash.t
and userdata = value userdata'
val eq : value -> value -> bool