Map a function across an array.
[b] map( b(a) f, [a] xs )
f The function to apply
xs The array
Returns the array created by applying function f to every element of xs
xs = ["abc","d","efghij"]; ys = map(length,xs); // ys = [3,1,6]
or
xs = [1,-5,2,-7,-4]; ys = map(abs,xs); // ys = [1,5,2,7,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.
Array.zipWith (3kaya)
Array.fold (3kaya)