577 B
577 B
Combinator Take a list of quoted functions from the stack and replace it with a list of the [first] results from running those functions (on copies of the rest of the stack.)
5 7 [12 -2 35 0 5]
Definition
[i]
Discussion
A specialization of [map] that runs a list of functions in parallel (if the underlying [map] function is so implemented, of course.)
Crosslinks
[map]