package odds

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | STAR
  2. | SLASH
  3. | RPAREN
  4. | PLUS
  5. | MIN
  6. | MAX
  7. | LPAREN
  8. | INTEGER of int
  9. | EOF
  10. | DASH
  11. | D
exception Error
val entry : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Dice.formula