<div dir="ltr"><ol><li>This is an opinion where people may disagree. However, the confusion with C semantics and how they do actually interact with Swift is important here, as Dmitri, Jordan, and Joe mentioned above.</li><li>See above. Given the semantics confusion, I and others think we should have something different. If we need a different way to express that, having symmetry between the declaration and use seems like it could be a good pick.</li><li>It&#39;s true there is already asymmetry in this area. However, I don&#39;t think we should have such if we can avoid it. Mutating functions, at least, have compiler errors to find out where you&#39;re misusing them such as calling one on a constant value type. Parameter labels vs. argument names require, I think, an unavoidable divergence in grammar due to have 1-2 names in one place and 0-1 names in the other.</li><li>Allowing Rust-like borrowing is not the main reason for this proposal, the symmetry and avoidance of confusing semantics are. However, freeing up the &amp; symbol would more easily allow for a feature that I and others (including Chris Lattner) think would be very useful, especially in constrained environments. One of the promises of future Swift is to stretch from systems programming to scripting.</li></ol></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 29, 2016 at 7:35 PM, Allen Ding <span dir="ltr">&lt;<a href="mailto:allen@snappymob.com" target="_blank">allen@snappymob.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">My 2 cents.<div><br></div><div>1. At the use site (and in actual usage in my code), func(&amp;value) is a visually recognizable enough pattern that it is &quot;obvious&quot; when I read it.</div><div><br></div><div>2. At the call use, func(inout value) would also be obvious, but feels clunkier and may even be less immediately recognizable. Just my opinion. I find symbols easier to pick out when reading.</div><div><br></div><div>3. I really need to be convinced that symmetry of usage at call site (for any language feature) and declaration is a desirable thing. In my opinion, declaration and use are orthogonal things and a lot of Swift already exhibits this asymmetry. e.g. parameter labels vs argument names, why doesn&#39;t calling a mutating func require mutating somewhere in the call to make it obvious the call might mutate the receiver.</div><div><br></div><div>4. The possibility of Swift becoming more Rust-like and letting this possibility drive this discussion does not seem like it should factor into the discussion of whether this proposal is a win.<br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Sat, Jan 30, 2016 at 6:44 AM, Trent Nadeau 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></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><a href="https://github.com/tanadeau/swift-evolution/blob/master/proposals/00xx-use-inout-at-func-call-site.md" target="_blank">https://github.com/tanadeau/swift-evolution/blob/master/proposals/00xx-use-inout-at-func-call-site.md</a><div><br></div><div><pre style="color:rgb(0,0,0)"># Use `inout` at Function Call Sites

* Proposal: TBD
* Author(s): [Trent Nadeau](<a href="http://github.com/tanadeau" target="_blank">http://github.com/tanadeau</a>)
* Status: TBD
* Review manager: TBD

## Introduction

Currently when a function has `inout` parameters, the arguments are passed with the `&amp;` prefix operator. For example:

```swift
func add1(inout num: Int) {
    num += 1
}

var n = 5
add1(&amp;n) // n is now 6
```

This operator does not fit with the rest of the language nor how the parameter is written at the function declaration. It should be replaced so that `inout` is used in both locations so that the call site above would instead be written as:

```swift
add1(inout n) // symmetric and now obvious that n can change
```

*Discussion thread TBD*

## Motivation

The `&amp;` prefix operator is a holdover from C where it is usually read as &quot;address of&quot; and creates a pointer. While very useful in C due to its pervasive use of pointers, its meaning is not the same and introduces an unnecessary syntactic stumbling block from users coming from C. Removing this operator and using `inout` removes this stumbling block due to the semantic change.

This operator is also disconnected from how the function declaration is written and does not imply that the argument may (and likely will) change. Using `inout` stands out, making it clear on first read that the variable may change.

It is also possible that Swift may add Rust-like borrowing in the future. In that case, the `&amp;` symbol would be better used for a borrowed reference. Note that Rust uses the same symbol for declaring a borrowed reference and creating one, creating a nice symmetry in that respect of the language. I think Swift would want to have such symmetry as well.

## Detailed design

```
in-out-expression → inout identifier
```

## Alternatives Considered

Keeping the syntax as it currently is.</pre><span><font color="#888888"><div><br></div>-- <br><div>Trent Nadeau</div>
</font></span></div></div>
<br></div></div><span class="">_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">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>
<br></span></blockquote></div><br></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Trent Nadeau</div>
</div>