The Tuple
fixed collection.
Tuples are anonymous types that can hold a fixed number of elements.
Tuples in Rune are declared with the special (a)
syntax, but can also be interacted with through the fundamental Tuple
type.
Once a tuple has been declared, its size cannot change.
The tuple type has support for native pattern matching:
let value = ;
if let = value
Examples
let empty = ;
let one = ;
let two = ;
assert!;
assert_eq!;
assert_eq!;
assert_eq!;