1Array.join(3kaya) Kaya module reference Array.join(3kaya)
2
3
4
6 Array::join - Concatentate a list of lists
7
9 [a] join( [[a]] lists )
10
12 lists A list of lists
13
15 Concatentate a list of lists into a single list.
16
17
18 lists = [[1,2,3],[4,5],[6,7,8,9,10]];
19 joined = join(lists);
20 // joined = [1,2,3,4,5,6,7,8,9,10]
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 Array.join(3kaya)