Skip to main content

Comparison Built-ins

FunctionDescriptionOPAWasmSwiftJava
x == y

x == y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is equal to y; false otherwise

v0.17.00.0.10.1.0
x > y

x > y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is greater than y; false otherwise

v0.17.00.0.10.1.0
x >= y

x >= y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is greater or equal to y; false otherwise

v0.17.00.0.10.1.0
x < y

x < y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is less than y; false otherwise

v0.17.00.0.10.1.0
x <= y

x <= y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is less than or equal to y; false otherwise

v0.17.00.0.10.1.0
x != y

x != y

Arguments:
x (any)
y (any)
Returns:
result (boolean)

true if x is not equal to y; false otherwise

v0.17.00.0.10.1.0