stub |
Filled in this node page. |
||
Line 4: | Line 4: | ||
|Inputs= | |Inputs= | ||
[ | [ | ||
{"Name":"", "Type":"Dummy"} | {"Name":"Value", "Type":"Dummy"} | ||
] | ] | ||
|Outputs= | |Outputs= | ||
[ | [ | ||
{"Name":"", "Type":"bool"} | {"Name":"*", "Type":"bool"} | ||
] | ] | ||
|}} | |}} | ||
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:Stubs]] | [[Category:ProtoFlux:Stubs]] | ||
[[Category:ProtoFlux:Operators]] | [[Category:ProtoFlux:Operators]] |
Latest revision as of 08:53, 27 June 2024
Is NaN
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
- Wikipedia's definition of NaN.
- Microsoft's documentation on the float NaN and double NaN.