Tuples::Tuple6<a, b, c, d, e, f>
Constructors
- Tuple6(a fst,b snd,c third,d fourth,e fifth,f sixth)
Usage
This represents an arbitrary set of six values. Tuple6(a,b,c,d,e,f) can be written as (a,b,c,d,e,f) for compactness.
This is the largest Tuple size available in the standard library. Strongly consider using a more meaningful data type instead of large Tuples, to make your code more readable.