Class UnaryExpr
Postfix unary expression in the Alang language.
Inherited Members
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public abstract class UnaryExpr : AlangExpr
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 SourceUnaryExpr(AlangExpr)
Postfix unary expression in the Alang language.
Declaration
protected UnaryExpr(AlangExpr operand)
Parameters
Type | Name | Description |
---|---|---|
AlangExpr | 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 AlangExpr Operand { get; }
Property Value
Type | Description |
---|---|
AlangExpr |