lte
infix fun <T> Expression<ComparableValue<T>>.lte(other: Expression<ComparableValue<T>>): Expression<BooleanValue>(source)
Returns whether this string expression is less than or equal to other.
Strings are compared lexicographically ("a" <= "b"
).
fun lte(left: Expression<StringValue>, right: Expression<StringValue>, collator: Expression<CollatorValue>): Expression<BooleanValue>(source)
Returns whether the left string expression is less than or equal to the right string expression. An optional collator (see collator) can be specified to control locale-dependent string comparisons.
Strings are compared lexicographically ("a" < "b"
).