Skip to content

IsMoreEqual

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

Checks if the input is greater than or equal to the operand.

Examples

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

; ; integer comparison
5 | IsMoreEqual(2)
Log("5 is more or equal to 2")
Assert.Is(true Break: true)

; ; float comparison
9.0 | IsMoreEqual((1.0 | Math.Add(2.0)))
Log("9.0 is more or equal to 2.0")
Assert.Is(true Break: true)