map
map(x, callback)
map(x, y, ..., callback)
Try it yourself:
$1 |
map([1, 2, 3], square)
|
|
$2 |
map([1, 2], [3, 4], f(a,b) = a + b)
|
See also:
All functions