Place a separator between each element of an array
[a] intersperse( a sep, [a] xs )
sep The separator
sep The elements
Place the separator sep between each element of xs and return the resulting array.
xs = [1,2,3,4]; ys = intersperse(0,xs); // ys = [1,0,2,0,3,0,4]
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.