Primitive Type tuple [−]
Operations on tuples
To access a single element of a tuple one can use the .0
`.0`
field access syntax.
Indexing starts from zero, so .0
`.0returns first value,
` returns first value, .1
`.1`
returns second value, and so on. In general, a tuple with N
elements has field accessors from 0 to N - 1.
If every type inside a tuple implements one of the following traits, then a tuple itself also implements it.
Clone
`Clone`PartialEq
`PartialEq`Eq
`Eq`PartialOrd
`PartialOrd`Ord
`Ord`Default
`Default`