elm/Accumulate/AccumulateExample.elm
Benjamin Watts 6072ca7ff8 Accumulate
2016-03-16 19:56:15 -04:00

7 lines
173 B
Elm

module AccumulateExample where
accumulate : (a -> b) -> List a -> List b
accumulate func input = List.map func input
-- case input of
-- [] -> []
-- otherwise ->