SYNOPSIS
[a] intersperse( a sep, [a] xs )ARGUMENTS
sep The separator
sep The elements
DESCRIPTION
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]
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/LICENSE
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.