The general tuple type is expressed as a nested collection of generic parameters. But to simplify the syntax, you can use one of the named tuple types. Names are given to tuples from one to ten elements in size.
| Size | Name |
| 1 | Single |
| 2 | Pair |
| 3 | Triple |
| 4 | Quadruple |
| 5 | Quintuple |
| 6 | Sextuple |
| 7 | Septuple |
| 8 | Octuple |
| 9 | Nonuple |
| 10 | Decuple |
Named tuple types are derived from their nested representations. As a result, a named type can be converted into a nested Tuple type, but a nested Tuple cannot be converted to a named type.