Class BinaryRegex
Represents a binary infix expression in the Alang language.
Inherited Members
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public abstract class BinaryRegex : AlangRegex
Remarks
This is an abstract class that serves as a base for specific binary infix expressions.
Constructors
| Edit this page View SourceBinaryRegex(AlangRegex, AlangRegex)
Initializes a new instance of the BinaryRegex class with the specified left and right operands.
Declaration
public BinaryRegex(AlangRegex left, AlangRegex right)
Parameters
Type | Name | Description |
---|---|---|
AlangRegex | left | The left operand of the binary infix expression. |
AlangRegex | right | The right operand of the binary infix expression. |
Properties
| Edit this page View SourceLeft
Left operand of the binary infix expression.
Declaration
public AlangRegex Left { get; }
Property Value
Type | Description |
---|---|
AlangRegex |
Right
Right operand of the binary infix expression.
Declaration
public AlangRegex Right { get; }
Property Value
Type | Description |
---|---|
AlangRegex |