GreaterThanOrEquals

class GreaterThanOrEquals : BinaryExpression


The greater-than-or-equal-to operator, which evaluates to true when operand1 >= operand2.

val x = GreaterThanOrEquals(3, 2)

Summary