Skip to content

IsLess

Name Mandatory Description Default Type
⬅️ Input Input of any type is accepted. Any
Output ➡️ Outputs true if the input is less than the operand and false otherwise. Bool
Value No The value to check against. 0 Any

Checks if the input is less than the operand.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
; ; string comparison
"a" | IsLess("z")
Log("a is less than z numerically")
Assert.Is(true Break: true)

; ; integer comparison
2 | IsLess(5)
Log("2 is less than 5")
Assert.Is(true Break: true)

; ; float comparison
2.0 | IsLess((2.0 | Math.Add(2.0)))
Log("2.0 is less than 4.0")
Assert.Is(true Break: true)