ProtoFlux:Equals: Difference between revisions

From Resonite Wiki
Filled in this node page.
not a stub
 
Line 41: Line 41:
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/equality-operators equality] operator.
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/equality-operators equality] operator.


[[Category:ProtoFlux:Stubs]]
[[Category:ProtoFlux:Operators]]
[[Category:ProtoFlux:Operators]]

Latest revision as of 17:36, 10 February 2025

==
A
*
B
Operators

The Equals node takes in 2 inputs and returns if the values match.

If you need to check if values are not equal to each other, use the Not Equals node.

Inputs

A (Pseudo-Generic)

The first value to check.

B (Pseudo-Generic)

The second value to check.

Outputs

* (bool)

Returns if the 2 input values are equal.

Bugs & Issues

  • This node does not correctly return the correct value when using and comparing NaN values against each other: #1046 & #1244.

See Also

  • Wikipedia's definition of equality.
  • Microsoft's documentation on the equality operator.