Tuple
Tuple
A tuple is a grouping of two or more expressions that is treated as a single expression.
A tuple is a grouping of two or more expressions that is treated as a single expression.
A tuple literal has multiple expressions between (), with the elements separated by commas:
(1, 2, 3)
Copy full snippet
The order of the elements in a tuple is important. The following tuple is different than the previous tuple example:
(3, 2, 1)
Copy full snippet
The same expression can also be in multiple positions in a tuple:
("Help me Rhonda", "Help", "Help me Rhonda")
Copy full snippet
Tuple expressions can be of any type, and can contain mixed types (unlike arrays which can only have elements of one type):
(1, 2.0, "three")
Copy full snippet
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.