Class GreaterEqual
- Namespace
- Albatross.Expression.Infix
- Assembly
- Albatross.Expression.dll
Infix GreaterEqual operation.
Operand Count: 2
Operands
- Operand1 : any
- Operand2 : any
Output Type: Boolean
Usage: 3 >= 2
Precedance: 50
public class GreaterEqual : ComparisonInfixOperation, IInfixExpression, IExpression, IToken, IHasPrecedence
- Inheritance
-
GreaterEqual
- Implements
- Inherited Members
- Extension Methods
Constructors
GreaterEqual()
public GreaterEqual()
Methods
Interpret(int)
Interprets the result of the comparison operation.
public override bool Interpret(int comparisonResult)
Parameters
comparisonResultintThe result from the comparison (-1, 0, or 1).
Returns
- bool
True if the comparison satisfies the operation's condition; otherwise, false.