package orsetto
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=151ca6df499bd3de7aa89a4e1627411fbee24c4dea6e0e71ce21f06f181ee654
md5=00393728b481c2bf15919a8202732335
doc/orsetto.cf/Cf_dfa/Mk_affix/argument-1-R/index.html
Parameter Mk_affix.R
val nil : term
The 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
.