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