-
-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
enhancementNew feature or requestNew feature or request
Description
What the rule should do:
Dict.union (Dict.singleton "foo" "bar") (Dict.singleton "some" other)
-->
Dict.fromList [( "foo", "bar" ), ( "some", other )]
---
Dict.union (Dict.singleton "foo" "bar") (Dict.fromList [("some", other)])
-->
Dict.fromList [( "foo", "bar" ), ( "some", other )]
this already happens for Dict.fromList, but this expands it to work with Dict.singleton. Basically anywhere we use Dict.fromList, we should also work with Dict.singleton.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request