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 list_of_keywords : string list
val keywords : (string, string) Opal.t
val is_keyword : string -> bool
val lower_ : (char, char) Opal.t
val is_abstract_identifier : string -> bool
val is_upper_identifier : string -> bool
val is_lower_identifier : string -> bool
type token =
  1. | Comment of Lang_OCaml_type_Types.comment
  2. | Symbol of string
  3. | Keyword of string
  4. | IdentA of string
  5. | IdentU of string
  6. | IdentL of string
  7. | Word of string
  8. | White of char
  9. | Other of char
module ToS : sig ... end
val lexer : (char, token) Opal.t