1Tuples.Triple(3kaya) Kaya module reference Tuples.Triple(3kaya)
2
3
4
6 Tuples::Triple - Sugared as (a,b,c)
7
9 Tuples::Triple< a, b, c >
10
11
12 = Triple(a fst,b snd,c third)
13
15 This represents an arbitrary triple of values. Triple(a,b,c) can be
16 written as (a,b,c) for compactness.
17
18 Tuples larger than Tuples.Pair (3kaya) s are generally better repreā
19 sented as user-defined data types, to help code readability.
20
22 Kaya standard library by Edwin Brady, Chris Morris and others
23 (kaya@kayalang.org). For further information see http://kayalang.org/
24
26 The Kaya standard library is free software; you can redistribute it
27 and/or modify it under the terms of the GNU Lesser General Public
28 License (version 2.1 or any later version) as published by the Free
29 Software Foundation.
30
31
32
33Kaya December 2010 Tuples.Triple(3kaya)