tuple types provide algebraic product types of all the generic arguments provided to tuple.
The values within a tuple 'tuple A B C' can be accessed via the tuple's argument field 'values' followed by a selector referring to the generic argument's position: 'values.0', 'values.1' and 'values.2', respectively.
Syntactic sugar of the Fuzion language permits an alternative notation to create values of tuple types as follows
is equivalent to
The actual generic types are inferred from the static types of the values 'a', 'b', 'c', ... the tuple is created from.
Similarly, syntactic sugar for the destructuring of tuples can be used to access the values as in
In destructurings, we can denote values we are not interested in using '_' as in
(_, b) := ("first", "second")
which will set 'b' to '"second"' and drop the first element of the tuple.
As an example, say we want to identify a person by its name and its age, so we can define
Then, we could extract Bob's age using
or Claire's name using
Destructuring also works for general features, e.g.
and the destructured value can then be used to create a tuple
however, tuples are not assignment compatible with general features even if they would destructure into the same types, i.e.,
The unit tuple '()' can be used as a short-hand to create the empty tuple 'tuple'. The empty tuple can be destructured like any other tuple using
even though this has no effect.
An instance of the single tuple 'tuple A' with sole element 'a' can not be created using syntactic sugar '(a)', this will produce the plain value of 'a' instead. However, destructuring of a single tuple is possible:
(a0) := tuple a
which is equivalent to
NYI: A single tuple 'tuple A' is currently not assignment compatible with type 'A', which would make handling of general tuples easier.
tuples and destructuring can be used to swap two elements or create a permutation as in
A tuple type with no actual generic arguments is isomorphic to 'unit', i.e, it is a type that has only one single value: '()'.
tuple types provide algebraic product types of all the generic arguments
provided to tuple.
The values within a tuple 'tuple A B C' can be accessed via the tuple's
argument field 'values' followed by a selector referring to the generic
argument's position: 'values.0', 'values.1' and 'values.2', respectively.
Syntactic sugar of the Fuzion language permits an alternative notation
to create values of tuple types as follows
is equivalent to
The actual generic types are inferred from the static types of the values
'a', 'b', 'c', ... the tuple is created from.
Similarly, syntactic sugar for the destructuring of tuples can be used
to access the values as in
In destructurings, we can denote values we are not interested in using
'_' as in
(_, b) := ("first", "second")
which will set 'b' to '"second"' and drop the first element of the tuple.
As an example, say we want to identify a person by its name and its age,
so we can define
Then, we could extract Bob's age using
or Claire's name using
Destructuring also works for general features, e.g.
and the destructured value can then be used to create a tuple
however, tuples are not assignment compatible with general features even
if they would destructure into the same types, i.e.,
The unit tuple '()' can be used as a short-hand to create the empty tuple
'tuple'. The empty tuple can be destructured like any other tuple
using
even though this has no effect.
An instance of the single tuple 'tuple A' with sole element 'a' can not
be created using syntactic sugar '(a)', this will produce the plain
value of 'a' instead. However, destructuring of a single tuple is possible:
(a0) := tuple a
which is equivalent to
NYI: A single tuple 'tuple A' is currently not assignment compatible with
type 'A', which would make handling of general tuples easier.
tuples and destructuring can be used to swap two elements or create a
permutation as in
A tuple type with no actual generic arguments is isomorphic to 'unit', i.e, it
is a type that has only one single value: '()'.