apply each(list, transform function)transformed list Type: For any types before, after([before], (before) -> after) -> [after]

Applies the function to each item in the list, and returns the resulting items.

The order of the items in the new list will correspond to the original order.

ExamplesClick an example to insert it
apply each([3, 6, 9], (? + 1))[4, 7, 10]
apply each([-3, 4, -7], abs)[3, 4, 7]