lte

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

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

Parameters

expr

The other expression in the comparison


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

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

Parameters

value

The other value in the comparison