Type:Object: Difference between revisions

From Resonite Wiki
Added a sentence and links about this object type.
No edit summary
 
Line 4: Line 4:


Other nodes that use this type frequently are the [[ProtoFlux:To String|ToString (Object)]] node and [[ProtoFlux:Format String|Format String]] node, as these need a generic type like an object to convert into a string of information.
Other nodes that use this type frequently are the [[ProtoFlux:To String|ToString (Object)]] node and [[ProtoFlux:Format String|Format String]] node, as these need a generic type like an object to convert into a string of information.
== See Also ==
* [[wikipedia:Top_type|Top Type]]


[[Category:Type]]
[[Category:Type]]

Latest revision as of 19:08, 8 April 2025

The Object type is essentially a Type which can store any other Type instance or it can be null.

It can be used as a "transporter" which you can use as generic storage and then later cast it back to its intended Type. This can mostly be seen when using the Box and Unbox nodes.

Other nodes that use this type frequently are the ToString (Object) node and Format String node, as these need a generic type like an object to convert into a string of information.

See Also