<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=""><div class="">What would the ramifications of the following be? Each addresses the "confusable with labeling" issue but preserve the inout keyword.</div><div class=""><br class=""></div><div class=""><font face="Courier" class="">func foo(x: inout Int)</font></div><div class=""><span style="font-family: Courier;" class="">func foo(x: @inout(Int))</span></div><div class=""><font face="Courier" class="">func foo(x: @inout Int)</font></div><div class=""><br class=""></div><div class="">Is there an underlying reason that parameter modification should live on the name side rather than the type side of the colon? They aren't really modifying the name</div><div class=""><br class=""></div><div class="">-- Erica, inexperienced with Rust</div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 18, 2015, at 7:07 PM, Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Dec 18, 2015, at 5:23 PM, Joe Groff via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">For Swift 3, we're planning to phase out 'var' parameters in functions, and we're also making it so that language keywords are valid argument labels. With both of these changes pending, I have a hard time not reading:<div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class="">func foo(inout x: Int)</div><div class=""><br class=""></div></blockquote>as an argument labeled `inout` instead of an unlabeled argument bound to `x`. Once `var` is phased out, `inout` would also be the only remaining case where quoting is necessary to use a name as an argument label. The `inout` keyword has always struck me as weird, since it violates definition-follows-use—maybe we should replace it with the `&amp;` sigil, mirroring its usage in call sites.</div></div></blockquote><br class=""></div><div class="">-1</div><div class=""><br class=""></div><div class="">“inout” is intended to communicate (or at least hint at) the copy-in / copy-out behavior of the argument. &nbsp;It is also there to enable other parameter modifiers, which can enable other more advanced parameters models in the future (e.g. rust-style borrowing).</div><div class=""><br class=""></div><div class="">-Chris</div><br class="">
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=r5jpKsi6nat7oa43lpCLi5GRGm2utDkbDscuFklXZ2fqm6YGYhhppX6ebNxtwoNLjgmID5i7nO5o7o8AJ54DBV99qmclF7UIKTfa0O9-2ByAv-2BH1LCb5mt4BjiRD05hYPy2nNp6i-2FEMmg9X-2B8YSzypeWpko-2F5Z4s0mmBf0SajbmCYdWl2EmQey9-2F-2FGL1B5tRCw8ye6Oqff9eebA7rioigcRf47IYfG9K2K0uGCORMSnMY-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;" class="">
</div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>