<div dir="ltr">+1 for the added symmetry and searchability </div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jan 30, 2016 at 4:45 AM, Brent Royal-Gordon via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">&gt; add1(&amp;n) // n is now 6<br>
</span><span class="">&gt; add1(inout n) // symmetric and now obvious that n can change<br>
<br>
</span>I&#39;m not a really big fan of this change; despite being longer, `inout n` is less visible to me than `&amp;n`. But this is a relatively weak preference—I could certainly live with it.<br>
<br>
More important than changing the symbol might be restricting its use. I don&#39;t see any particularly good reason to permit you to say `let x = &amp;y`. Far better to use `withUnsafePointer()` to control the scope of the pointer, or at least say something like `let x = unsafeInoutPointer(&amp;y)` to acknowledge that you&#39;re circumventing memory safety and possibly taking a pointer to a temporary. Basically, I think `&amp;` or `inout` or however we spell it should only be allowed as a parameter, not just anywhere in any expression.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Brent Royal-Gordon<br>
Architechies<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</div></div></blockquote></div><br></div>