Expand description
Contains the implementation of the Node enum and the functions to calculate the nullability, prefix, suffix and factors sets of a regular expression tree.
Enums§
- Node
- The
Nodeenum represents the different types of nodes that can be used in a regular expression tree.
Functions§
- factors_
set - The
factors_setfunction returns the set of SetTerminal that are factors of a regular expression tree. - nullability_
set - The
nullability_setfunction returns the set of SetTerminal that are nullable in a regular expression tree. - prefix_
set - The
prefix_setfunction returns the set of SetTerminal that are prefixes of a regular expression tree. - suffix_
set - The
suffix_setfunction returns the set of SetTerminal that are suffixes of a regular expression tree.