Up

module UReStrParserType

: sig
#
type set_notation = [
| `Set of USet.t
| `Property of string
| `Compl of set_notation
]
#
type tree = [
| `Alt of tree * tree
| `Seq of tree * tree
| `Rep of tree
| `Repn of tree * int * int option
| `After of tree
| `Before of tree
| `Epsilon
| `Group of tree
| `OneChar
| `String of UChar.t list
| `Set of USet.t
| `SetNotation of set_notation
| `BoS
| `EoS
]
end