package odate

  1. Overview
  2. Docs
type options = [
  1. | `Pad of char
  2. | `NoPad
  3. | `None
  4. | `Upper
  5. | `Tz of int
]
type t =
  1. | String of string
  2. | Directive of options * char
  3. | Space
  4. | EOL
val __ocaml_lex_tables : Stdlib.Lexing.lex_tables
val tokens : Stdlib.Lexing.lexbuf -> t
val __ocaml_lex_tokens_rec : Stdlib.Lexing.lexbuf -> int -> t
val directive : Stdlib.Lexing.lexbuf -> char
val __ocaml_lex_directive_rec : Stdlib.Lexing.lexbuf -> int -> char
val options : Stdlib.Lexing.lexbuf -> options
val __ocaml_lex_options_rec : Stdlib.Lexing.lexbuf -> int -> options