Interface IBinaryExpression
Binary expression
Inherited Members
Namespace: Microsoft.ML.Probabilistic.Compiler.CodeModel
Assembly: Microsoft.ML.Probabilistic.Compiler.dll
Syntax
public interface IBinaryExpression : IExpression
Properties
Left
Expression to the left of the operator
Declaration
IExpression Left { get; set; }
Property Value
Type | Description |
---|---|
IExpression |
Operator
The operator
Declaration
BinaryOperator Operator { get; set; }
Property Value
Type | Description |
---|---|
BinaryOperator |
Right
Expression to the right of the operator
Declaration
IExpression Right { get; set; }
Property Value
Type | Description |
---|---|
IExpression |