Table of Contents

Class ParsedExpressionTypedBinaryOperator

Namespace
LfrlAnvil.Computable.Expressions.Constructs
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents a typed binary operator construct.

public abstract class ParsedExpressionTypedBinaryOperator : ParsedExpressionBinaryOperator
Inheritance
ParsedExpressionTypedBinaryOperator
Derived
Inherited Members

Constructors

ParsedExpressionTypedBinaryOperator(Type, Type)

Creates a new ParsedExpressionTypedBinaryOperator instance.

protected ParsedExpressionTypedBinaryOperator(Type leftArgumentType, Type rightArgumentType)

Parameters

leftArgumentType Type

Left argument's type.

rightArgumentType Type

Right argument's type.

Properties

LeftArgumentType

Left argument's type.

public Type LeftArgumentType { get; }

Property Value

Type

RightArgumentType

Right argument's type.

public Type RightArgumentType { get; }

Property Value

Type