mdgriffith / elm-ui

What if you never had to write CSS again?
https://package.elm-lang.org/packages/mdgriffith/elm-ui/latest/
BSD 3-Clause "New" or "Revised" License
1.35k stars 110 forks source link

New signature for Element.Keyed functions #294

Closed pravdomil closed 3 years ago

pravdomil commented 3 years ago

What if:

column : List (Attribute msg) -> List ( String, Element msg ) -> Element msg

Becomes:

column : List (Attribute msg) -> List { key : String, element : Element msg } -> Element msg

I would prefer second one because List ( String, Element msg ) has no explicit meaning. That is not a good idea.