Provided by: kaya_0.4.4-6ubuntu3_amd64 bug

NAME

       Array::intersperse - Place a separator between each element of an array

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 (kaya@kayalang.org). 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.