package camlrack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | LParen
  2. | LBrace
  3. | LBracket
  4. | RParen
  5. | RBrace
  6. | RBracket
  7. | Integer of int
  8. | Float of float
  9. | String of string
  10. | Symbol of string
val string_of_token : token -> string
val regexps : (Str.regexp * (string -> token)) list
val whitespace : Str.regexp
val tokenize : string -> token list