ProtoFlux:Pack Nullable: Difference between revisions

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


Returns the nullable version of this value.
Returns the nullable version of this 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:40, 27 June 2024

Pack Nullable
Value
*
HasValue
Packing

The Pack Nullable node takes in a value and an input if this value is considered as having a value. This returns a nullable version of this value.

Inputs

Value (Pseudo-Generic)

The value itself.

HasValue (bool)

Sets the state of having a value.

Outputs

* (Pseudo-Generic)

Returns the nullable version of this value.

See Also