Enum RegexpTreeNodeType
Represents the type of a regular expression tree node. The value of an enumeration element corresponds to the priority of the operation it describes.
Namespace: Microsoft.ML.Probabilistic.Distributions.Automata
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public enum RegexpTreeNodeType
Fields
Name | Description |
---|---|
Concat | Represents the concatenation operation. |
ElementSet | Represents a set of elements. |
Empty | Represents an empty string. |
Nothing | Represents the empty language, i.e. a language that contains no strings. |
Star | Represents the Kleene star operation. |
Union | Represents the union operation. |