1Tuples.Tuple6(3kaya) Kaya module reference Tuples.Tuple6(3kaya)
2
3
4
6 Tuples::Tuple6 - Sugared as (a,b,c,d,e,f)
7
9 Tuples::Tuple6< a, b, c, d, e, f >
10
11
12 = Tuple6(a fst,b snd,c third,d fourth,e fifth,f sixth)
13
15 This represents an arbitrary set of six values. Tuple6(a,b,c,d,e,f)
16 can be written as (a,b,c,d,e,f) for compactness.
17
18 This is the largest Tuple size available in the standard library.
19 Strongly consider using a more meaningful data type instead of large
20 Tuples, to make your code more readable.
21
23 Kaya standard library by Edwin Brady, Chris Morris and others
24 (kaya@kayalang.org). For further information see http://kayalang.org/
25
27 The Kaya standard library is free software; you can redistribute it
28 and/or modify it under the terms of the GNU Lesser General Public
29 License (version 2.1 or any later version) as published by the Free
30 Software Foundation.
31
32
33
34Kaya December 2010 Tuples.Tuple6(3kaya)