package acme

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type re = string
type t =
  1. | Char of int
  2. | Line of int
  3. | ForwardRE of re
  4. | BackwardRE of re
  5. | Zero
  6. | Dollar
  7. | Dot
  8. | Plus of t * t
  9. | Minus of t * t
  10. | Comma of t * t
  11. | Semicolon of t * t
  12. | Null
val p : t -> string