Struct Data Type In Verse
Struct
Struct is short for structure, and is a way to group several related variables together. Any variables can be grouped, including variables of different types.
Struct is short for structure, and is a way to group several related variables together. Any variables can be grouped, including variables of different types.
[
Click image to enlarge.
| | | coordinates := struct: | | --- | --- | | | X : float = 0.0 | | | Y : float = 0.0 | Copy full snippet | Creating a struct: Use the keyword struct followed by a code block. Definitions in the struct’s code block define the fields of the struct. |
| --- | --- | --- | --- | --- | --- | --- | --- |
| Position := coordinates{X := 1.0, Y := 1.0} Copy full snippet | Instantiating a struct: You can construct an instance of a struct from an archetype. An archetype defines the values of a struct’s fields. |
| Position.X Copy full snippet | Accessing fields on a struct: You can access a struct’s fields to get their value by adding . between the struct instance and the field name. |
You're reading a preview
The full reference is free for BrainDeadGuild Discord members — sign in to read it all, or open the original at the source.
Sign in with your BrainDead.TV / BrainDeadGuild Discord account for full access.
