package orsetto
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha512=9b654edb663ae697563f150824047052f3b1bf760398f24bce6350553f031f73c46b6337239a1acd871e61238597ea92046809e3358290ff14d6ba671b449085
doc/orsetto.ucs/Ucs_lex_scan/Create/DFA/index.html
Module Create.DFA
The regular syntax terms.
val nil : termThe empty term, representing no events.
Use sat f to make a term representing any event that satisfies the predicate f.
Use cats s to make a term representing the concatenation of all the terms of s in sequential order.
Use alt2 a b to make a term representing the occurrence of either a or b.
Use alts s to make a term representing the occurrence of any of the alternatives in s.
Use star t to make a term representing the Kleene star of t, i.e. zero, one or more occurrences of t.
Use seq t to make a term representing a sequence of occurrences of t.
If ~a is used, then it specifies the minimum number of occurrences in the recognized sequence. If ~b is used then it specifies the maximum number of occurrences in the recognized sequence. Composition raises Invalid_argument if a < 0 or b < a.