package ockt

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Invalid_character
exception Unexpected_eof
type key = string
type value =
  1. | String of string
  2. | Table of (key, value) Stdlib.Hashtbl.t
val get_string : value -> string
val get_table : value -> (key, value) Stdlib.Hashtbl.t
val string_of_value : value -> string
val table_of_tokens : Token.token list -> value * Token.token list
val parse : string -> value