Tuple in Verse
A tuple is a grouping of two or more expressions that is treated as a single expression.
The elements of a tuple are in the order you insert them into the tuple, and you can access the elements by their position in the tuple, called their index. Because the expressions in a tuple are grouped, they can be treated as a single expression.
The word tuple is a back formation from quadruple, quintuple, sextuple, and so on. Compare to array.
A tuple literal has multiple expressions between (), with the elements separated by commas:
(1, 2, 3)
(1, 2, 3)
Copy full snippet(1 line long)
The order of the elements in a tuple is important. The following tuple is different than the previous tuple example:
(3, 2, 1)
(3, 2, 1)
Copy full snippet(1 line long)
The same expression can also be in multiple positions in a tuple:
("Help me Rhonda", "Help", "Help me Rhonda")
("Help me Rhonda", "Help", "Help me Rhonda")
Copy full snippet(1 line long)
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.