ProtoFlux:IsNaN: Difference between revisions

From Resonite Wiki
stub
 
m YoshBot moved page ProtoFlux:Is NaN to ProtoFlux:IsNaN: Automated: removing spaces from ProtoFlux namespace
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:
|Inputs=
|Inputs=
[
[
{"Name":"", "Type":"Dummy"}
{"Name":"Value", "Type":"Dummy"}
]
]
|Outputs=
|Outputs=
[
[
{"Name":"", "Type":"bool"}
{"Name":"*", "Type":"bool"}
]
]
|}}
|}}


[[Category:ProtoFlux:Stubs]]
The '''Is NaN''' node takes in a value and returns if this value is <code>NaN</code> (Not a Number).
 
== Inputs ==
 
=== Value (Pseudo-Generic) ===
 
The value we are checking.
 
== Outputs ==
 
=== * ([[Type:bool|bool]]) ===
 
Returns if the provided value is not a number.
 
== See Also ==
* Wikipedia's definition of [https://en.wikipedia.org/wiki/NaN NaN].
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/api/system.single.nan?view=net-8.0 float NaN] and [https://learn.microsoft.com/en-us/dotnet/api/system.double.nan?view=net-8.0 double NaN].
 
[[Category:ProtoFlux:Operators]]
[[Category:ProtoFlux:Operators]]

Latest revision as of 00:25, 21 August 2025

Is NaN
Value
*
Operators

The Is NaN node takes in a value and returns if this value is NaN (Not a Number).

Inputs

Value (Pseudo-Generic)

The value we are checking.

Outputs

* (bool)

Returns if the provided value is not a number.

See Also