Expression Operators |
Name | Description | |
---|---|---|
![]() ![]() | Addition(Object, Expression) |
Operator overload for the '+' operator to produce an Expression which represents value + expression
|
![]() ![]() | Addition(Expression, Expression) |
Operator overload for the '+' operator to produce an Expression which represents expression + expression
|
![]() ![]() | Addition(Expression, Object) |
Operator overload for the '+' operator to produce an Expression which represents expression + value
|
![]() ![]() | Division(Object, Expression) |
Operator overload for the '/' operator to produce an Expression which represents value / expression
|
![]() ![]() | Division(Expression, Expression) |
Operator overload for the '/' operator to produce an Expression which represents expression / expression
|
![]() ![]() | Division(Expression, Object) |
Operator overload for the '/' operator to produce an Expression which represents expression / value
|
![]() ![]() | Multiply(Object, Expression) |
Operator overload for the '*' operator to produce an Expression which represents value * expression
|
![]() ![]() | Multiply(Expression, Expression) |
Operator overload for the '*' operator to produce an Expression which represents expression * expression
|
![]() ![]() | Multiply(Expression, Object) |
Operator overload for the '*' operator to produce an Expression which represents expression * value
|
![]() ![]() | Subtraction(Object, Expression) |
Operator overload for the '-' operator to produce an Expression which represents value - expression
|
![]() ![]() | Subtraction(Expression, Expression) |
Operator overload for the '-' operator to produce an Expression which represents expression - expression
|
![]() ![]() | Subtraction(Expression, Object) |
Operator overload for the '-' operator to produce an Expression which represents expression - value
|