ProtoFlux:NotEquals: Difference between revisions

From Resonite Wiki
Small correction: This is the correct link to this concept of "not equals".
m YoshBot moved page ProtoFlux:Not Equals to ProtoFlux:NotEquals: Automated: removing spaces from ProtoFlux namespace
 
(One intermediate revision by one other user not shown)
Line 40: Line 40:
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/equality-operators inequality] operator.
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/equality-operators inequality] operator.


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

Latest revision as of 00:28, 21 August 2025

!=
A
*
B
Operators

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

If you need to check if values are equal to each other, use the 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 not 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