Antoine Dauguet
Antoine Dauguet
Add a `map : (a -> b) -> Body a -> Body b` function. Closes #113
Body.map
Would it make sense to have a `map : (a -> b) -> Body a -> Body b` function? Inspiration comes from classic TEA, `Html.map`, `Cmd.map`, etc. I would like...
Hi, I have been using elm-live for quite some time, and today I have encountered an error. My project structure is a bit more complex than usual. I am trying...
I am trying a to mentor a student on the BombDefuser exercise. It states: > For each bit in the ID number, starting with the leftmost bit, you will apply...
Is it possible to expose some declarations in `import` statements? Before: ```elm import Html import Html.Attributes Html.div [ Html.Attributes.class "hello" ] [ Html.text "Hello world!" ] ``` After: ```elm import...