--- name: map args: [f, list] renameInGlobalScope: false --- Apply the function *f* to each element in the list *list*. For example, ```nix map (x: "foo" + x) [ "bar" "bla" "abc" ] ``` evaluates to `[ "foobar" "foobla" "fooabc" ]`.