list
(
β
)
collect (
(
α
list
(
β
)
)
 
f
, 
list
(
α
)
 
l)
Transform a list by applying a function to each element and flattening the result.collect(f, [x1, x2, x3...)] will return f(x1) ++ f(x2) ++ f(x3) ++ ...
f
A transformation function (from items to lists).
l
A list, possibly empty.
returns
A new list, respecting the order of l.

Comments

The browser you use is not supported by this application, probably because it lacks some critical features.
For a better experience, please consider using this application with a supported browser.