<div dir="ltr"><div>Please feel free to ignore this naive attempt to engage in this discussion.</div><div><br></div><div>My understanding of the history of Swift&#39;s tuples, argument lists, pattern matching, associated values, etc. in two steps:</div><div><br></div><div>1. Initial Idealism *:</div><div>Simple powerful heavily reused general concept.</div><div><br></div><div>2. Iterative pragmatism / reality *:</div><div>Complicated (exceptions to) rules.</div><div><br></div><div>(* Inevitably not taking everything in to account.)</div><div><br></div><div>Has there been any recent attempts to outline a more or less complete redesign for these things, returning to step 1 so to speak, but taking into account what has now been learned?</div><div><br></div><div><br></div><div>As a side note (and supposedly trivial to most but me):</div><div><br></div><div>Parentheses (parenthesized expressions in the grammar?) are used for all of these parts of the language, and they probably should be, but perhaps the similarities and differences between the language constructs can be made clearer to see by pretending that argument and parameter lists are written with eg ≪≫ and tuples with eg ⊂⊃, etc.?</div><div><br></div><div>For example, I think most people agree that we should be able to use &quot;sloppy/forgiving&quot; parenthetical grouping in code such as:</div><div>((1 + (2 * 3)) * (x + (-5))) - y</div><div>This is fine and can be used to express meaning for the person reading/writing, even though it means that some of the parens can become superfluous to a machine interpretation.</div><div><br></div><div>AFAICS this need not have anything to do with tuples and/or parameter lists, but the fact that Swift is treating eg:</div><div>func foo(x: ((((Int))))) { print(x) }</div><div>as</div><div>func foo(x: Int) { print(x) }</div><div>and</div><div>((Int, Int))</div><div>as</div><div>(Int, Int)</div><div>seems to suggest that it somehow does.</div><div><br></div><div>Or maybe I have just forgotten the reasons for why there can be no such thing as (a nested) single element tuple (type).</div><div><br></div><div>I also can&#39;t remember what the pros &amp; cons of disallowing labeled single element tuples were.</div><div><br></div><div>Happy to be corrected and pointed to relevant reading : )</div><div><br></div><div>/Jens</div><div><br></div></div>