ProtoFlux:Unpack Nullable: Difference between revisions

From Resonite Wiki
Created a page for the Unpack Nullable node.
 
Added a See Also section.
 
Line 30: Line 30:


Returns if this has a value.
Returns if this has a value.
== See Also ==
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Nullable_type nullable types].
* Microsoft's documentation on the [https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/nullable-value-types nullable value types] & [https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references nullable reference types].


[[Category:ProtoFlux:Operators:Packing]]
[[Category:ProtoFlux:Operators:Packing]]

Latest revision as of 17:41, 27 June 2024

Unpack Nullable
Nullable
Value
HasValue
Packing

The Unpack Nullable node takes in a nullable, and returns the value and if this nullable has a value.

Inputs

Nullable (Pseudo-Generic)

The nullable value.

Outputs

Value (Pseudo-Generic)

Returns the value itself.

HasValue (bool)

Returns if this has a value.

See Also