Tuples::Tuple5<a, b, c, d, e>
Constructors
- Tuple5(a fst,b snd,c third,d fourth,e fifth)
Usage
This represents an arbitrary set of five values. Tuple5(a,b,c,d,e) can be written as (a,b,c,d,e) for compactness.
Consider using a more meaningful data type instead of large Tuples, to make your code more readable.