Search plugin
Manual
haskell.org
map package:daml-stdlib -is:exact -is:module is:exact
Packages
map
:: (a -> b) -> NonEmpty a -> NonEmpty b
daml-stdlib
DA.NonEmpty
Apply a function over each element in the non-empty list.
map
:: Set -> Map k ()
daml-stdlib
DA.Set
map
:: (a -> b) -> [a] -> [b]
daml-stdlib
Prelude
`map f xs` applies the function `f` to all elements of the list `xs` and returns the list of results (in the same order as `xs`).