Class KleenePlus
Represents a Kleene plus unary expression in the Alang language.
Inherited Members
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public class KleenePlus : UnaryRegex
Remarks
The Kleene plus operation is a postfix unary operation that denotes one or more repetitions of the operand expression.
Constructors
| Edit this page View SourceKleenePlus(AlangRegex)
Represents a Kleene plus unary expression in the Alang language.
Declaration
public KleenePlus(AlangRegex operand)
Parameters
Type | Name | Description |
---|---|---|
AlangRegex | operand | The operand of the Kleene plus expression. |
Remarks
The Kleene plus operation is a postfix unary operation that denotes one or more repetitions of the operand expression.
Properties
| Edit this page View SourceAlangExpressionString
String representation of this expression in valid Alang language syntax.
Declaration
public override string AlangExpressionString { get; }
Property Value
Type | Description |
---|---|
string | A string representing the expression in Alang syntax. |
Overrides
| Edit this page View SourcePrecedence
Precedence level of this expression according to the Alang grammar specification.
Declaration
public override int Precedence { get; }
Property Value
Type | Description |
---|---|
int | An integer representing the precedence level of the expression. |