1Array.join(3kaya)            Kaya module reference           Array.join(3kaya)
2
3
4

NAME

6       Array::join - Concatentate a list of lists
7

SYNOPSIS

9       [a] join( [[a]] lists )
10

ARGUMENTS

12       lists A list of lists
13

DESCRIPTION

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

AUTHORS

23       Kaya   standard  library  by  Edwin  Brady,  Chris  Morris  and  others
24       (kaya@kayalang.org). For further information see http://kayalang.org/
25

LICENSE

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)
Impressum