Open
Description
Quick Summary: ???
Elm 0.19.1 limits the tuple size to 3, which is too small.
I understand that the limitation is to help to increase the readability of the code. But there are cases that tuples cannot be replaced with records, namely if I want to deduplicate a list of records, I have to convert it to a list of tuples, then dedup it with a round trip to and from Set
. Right now I have to use something like (a, b, (c, d))
to by pass the tuple size limitation.