1Tuples.Tuple5(3kaya) Kaya module reference Tuples.Tuple5(3kaya)
2
3
4
6 Tuples::Tuple5 - Sugared as (a,b,c,d,e)
7
9 Tuples::Tuple5< a, b, c, d, e >
10
11
12 = Tuple5(a fst,b snd,c third,d fourth,e fifth)
13
15 This represents an arbitrary set of five values. Tuple5(a,b,c,d,e) can
16 be written as (a,b,c,d,e) for compactness.
17
18 Consider using a more meaningful data type instead of large Tuples, to
19 make your code more readable.
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.Tuple5(3kaya)