<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">On Jan 22, 2016, at 3:10 PM, Jordan Rose via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><div><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" class=""><div class=""><div class="" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div class="">Additionally, there is a hidden(?) feature in Swift that's imho quite cool:</div><div class="">The ability to call a function with a tuple containing the arguments</div><div class=""><div class="" style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;"><span class="" style="color: rgb(187, 44, 162);">let</span><span class="Apple-converted-space">&nbsp;</span>args = (<span class="" style="color: rgb(39, 42, 216);">4.0</span>, exponent:<span class="Apple-converted-space">&nbsp;</span><span class="" style="color: rgb(39, 42, 216);">4.0</span>)</div><div class="" style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; color: rgb(49, 89, 93);">printPowWithBase<span class="">(</span><span class="" style="color: rgb(79, 129, 135);">args</span><span class="">)</span></div></div><div class=""><br class=""></div><div class="">In this case, you end up with a first parameter without any indication of its role.</div></div></div></blockquote><br class=""></div><div style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">This feature is likely to get redesigned soon. (It has other problems.)</div></div></blockquote></div>Can you elaborate? I did not encounter many usecases yet, but I think it could be handy to configure a bunch of similar objects — and if it would be possible to capture the parameter tuple inside the called function, this could be forwarded to a function with the same signature easily… (especially, but not only the implementation of super)</div></div></blockquote><br class=""></div><div class="">In some contexts it's hard to distinguish between "the first parameter" and "the tuple of all parameters", and we have some weird inconsistencies where "foo(x)" and "foo((x))" do the same thing sometimes and different things other times.</div></div></div></blockquote><div><br class=""></div><div>Here’s a simple example to show the ambiguity:</div><div><br class=""></div><div>func foo(a : Any…) {}</div><div>let x = (1,2,3)</div><div>foo(x) &nbsp; // 1 parameter or 3?</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">There's more complexity here but I don't have it paged in; it's not so relevant to this discussion</div></div></div></blockquote><br class=""></div><div>Incidentally, IMO the likely solution is for this to just make this explicit somehow. &nbsp;* isn’t really right right sigil for this, but you could imagine something like this:</div><div><br class=""></div>printPowWithBase(*args)<br class=""><br class=""><div class="">Where the * (or whatever symbol actually makes sense) is a “flatten” or “expand inline” operation for the tuple argument. &nbsp;This makes it unambiguous whether splatting is happening or not.</div><div class=""><br class=""></div><div class=""><div>func foo(a : Any…) {}</div><div>let x = (1,2,3)</div><div>foo(x) &nbsp; // 1 parameter</div></div><div>foo(*x) &nbsp;// 3 parameters</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Alternatively, the argument could be made that we should just remove this splatting behavior. &nbsp;I haven’t heard of any super-compelling use-cases for it. &nbsp;Adding a sigil for this operation would expose the complexity that the behavior underlines.</div><div class=""><br class=""></div><div class="">-Chris</div></body></html>