Kaya 0.4.4 reference for Array::map

List of functions and data types in Array

[b] map(b(a) f, [a] xs)

Arguments

Usage

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]

Related

kaya@kayalang.org | Last modified 29 November 2011 | Supported by Durham CompSoc | Powered by Kaya