gte

abstract infix fun Expression.gte(expr: Expression): BooleanExpr

Creates an inequality expression for verifying this expression is greater than or equal to another expression

Parameters

expr

The other expression in the comparison


open infix fun Expression.gte(value: ByteArray): BooleanExpr
open infix fun Expression.gte(value: Number): BooleanExpr
open infix fun Expression.gte(value: String): BooleanExpr
open infix fun Expression.gte(value: UByte): BooleanExpr
open infix fun Expression.gte(value: UInt): BooleanExpr
open infix fun Expression.gte(value: ULong): BooleanExpr
open infix fun Expression.gte(value: UShort): BooleanExpr

Creates an inequality expression for verifying this expression is greater than or equal to another expression

Parameters

value

The other value in the comparison