IsNot¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
Input of any type is accepted. | Any |
||
Output ➡️ |
Outputs true if the input is not equal to the operand and false otherwise. | Bool |
||
Value |
No | The value to check against. | 0 |
Any |
Checks if the input is not equal to the operand.
Details¶
This shard compares the input to its :Value
parameter and outputs true
if they are different, else outputs false
.
If the input and :Value
parameter have different data types they will be assessed as inequal by default even if they are numerically equal (for example int 5
is not equal to float 5.0
).
See also
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|