Tuples::Triple<a, b, c>
Constructors
- Triple(a fst,b snd,c third)
Usage
This represents an arbitrary triple of values. Triple(a,b,c) can be written as (a,b,c) for compactness.
Tuples larger than Pairs are generally better represented as user-defined data types, to help code readability.