Table of Contents

Struct ParsedExpressionBinaryOperatorInfo

Namespace
LfrlAnvil.Computable.Expressions.Internal
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents an information about a binary operator construct.

public readonly struct ParsedExpressionBinaryOperatorInfo
Inherited Members

Constructors

ParsedExpressionBinaryOperatorInfo(Type, Type, Type)

Creates a new ParsedExpressionBinaryOperatorInfo instance.

public ParsedExpressionBinaryOperatorInfo(Type operatorType, Type leftArgumentType, Type rightArgumentType)

Parameters

operatorType Type

Construct's type.

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

OperatorType

Construct's type.

public Type OperatorType { get; }

Property Value

Type

RightArgumentType

Right argument's type.

public Type RightArgumentType { get; }

Property Value

Type

Methods

ToString()

Returns a string representation of this ParsedExpressionBinaryOperatorInfo instance.

[Pure]
public override string ToString()

Returns

string

String representation.