package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val list_of_symbols : string list
val symbol : (char, string) Opal.t
val comment_EndOfLine : (char, string) Opal.t
val comment_StarBracket : (char, string) Opal.t
val comment : (char, string) Opal.t
val list_of_keywords : string list
val keywords : (string, string) Opal.t
type value =
  1. | String of string
  2. | Char of char
  3. | Int of int
val value : (char, value) Opal.t
val is_keyword : string -> bool
val is_ident : string -> bool
type token =
  1. | Comment of string
  2. | Symbol of string
  3. | Value of value
  4. | Keyword of string
  5. | Ident of string
  6. | Word of string
  7. | White of char
  8. | Other of char
module ToS : sig ... end
val lexer : (char, token) Opal.t