<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=""><br class=""><div><blockquote type="cite" class=""><div class="">On Feb 24, 2016, at 8:50 PM, Chris Lattner &lt;<a href="mailto:clattner@apple.com" class="">clattner@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><span 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; float: none; display: inline !important;" class="">None of these are really great. &nbsp;Since you’re advocating for it, I’m very concerned about making partially applied methods be uncurried always (#2). &nbsp;I have seen a *lot* of people use curried methods on classes (in particular) and this leads to some pretty elegant patterns. &nbsp;I’d expect any serious discussion of changing this behavior to include a survey of what people are actually using this for, and whether the end result we’d get from this change would be better or worse overall (not just in a single case).</span></div></blockquote></div><br class=""><div class="">I'm concerned about that too, but I think most of these use cases are already impeded by removing tuple argument splatting, since that makes it impossible to make a generic method transformation like `alterMethod&lt;Receiver, Args, Ret&gt;(method: Receiver -&gt; Args -&gt; Ret)`. I think these use cases can be recovered on flattened methods by explicit variadic splatting, since you could then write `alterMethod&lt;Receiver, Args, Ret&gt;(method: (Receiver, Args...) -&gt; Ret)` instead.</div><div class=""><br class=""></div><div class="">-Joe</div></body></html>