Class UnaryRegex
Unary expression in the Alang language.
Inherited Members
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public abstract class UnaryRegex : AlangRegex
Remarks
Base class for all postfix unary operations in Alang expressions, such as option (?), Kleene star (*), Kleene plus (+), and complement (~).
Constructors
| Edit this page View SourceUnaryRegex(AlangRegex)
Unary expression in the Alang language.
Declaration
protected UnaryRegex(AlangRegex operand)
Parameters
Type | Name | Description |
---|---|---|
AlangRegex | operand | Operand of the postfix unary expression. |
Remarks
Base class for all postfix unary operations in Alang expressions, such as option (?), Kleene star (*), Kleene plus (+), and complement (~).
Properties
| Edit this page View SourceOperand
Operand of the postfix unary expression.
Declaration
public AlangRegex Operand { get; }
Property Value
Type | Description |
---|---|
AlangRegex |