Automata Docs Automata Docs
Automata Docs Automata Docs

Search Results for

    Edit this page

    Class BinaryRegex

    Represents a binary infix expression in the Alang language.

    Inheritance
    object
    AlangRegex
    BinaryRegex
    Concatenation
    Difference
    Intersection
    Union
    Inherited Members
    AlangRegex.Precedence
    AlangRegex.AlangExpressionString
    AlangRegex.IsEmptyString
    AlangRegex.Parse(string)
    AlangRegex.Compile(string)
    AlangRegex.Compile(string, params string[])
    AlangRegex.Compile(Alphabet)
    AlangRegex.Compile()
    AlangRegex.Compile(params string[])
    AlangRegex.Param(AlangRegex, AlangRegex)
    AlangRegex.ToString()
    AlangRegex.DescendantsAndSelf()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    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 Source

    BinaryRegex(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 Source

    Left

    Left operand of the binary infix expression.

    Declaration
    public AlangRegex Left { get; }
    Property Value
    Type Description
    AlangRegex
    | Edit this page View Source

    Right

    Right operand of the binary infix expression.

    Declaration
    public AlangRegex Right { get; }
    Property Value
    Type Description
    AlangRegex