Is Equal
Last updated
Last updated
IsEqual is a Relational Expression Node, which compares two Input Values, and returns a Boolean, based on whether or not they are equal to one another.
Relational Expressions are frequently used alongside Branch Nodes and Logical Operator Nodes to manipulate the flow of logic and are essential when building any complex applications.
Attribute | Type | Description |
---|---|---|
| Drop-down | The type of data that will be plugged into the |
Input | Type | Description |
---|---|---|
Pulse Input (►) | Pulse | A standard Input Pulse, to trigger the execution of the Node. |
| Defined in the | The Value to be compared with |
| Defined in the | The Value to be compared with |
Output | Type | Description |
---|---|---|
Pulse Output (►) | Pulse | A standard Output Pulse, to move onto the next Node along the Logic Branch, once this Node has finished its execution. |
| Bool | Returns true if |
Below is an insight into the behaviour of the IsEqual Node. Note that when comparing Strings, the evaluation of equality is case-sensitive.
|
|
|
123 | 123 | True |
85.05 | 85.06 | False |
"Cat" | "Dog" | False |
False | False | True |
"Mr. Smith" | "mr. smith" | False |
Relational operator on Wikipedia.