+1<div><br></div><div>I had filed SR-534 to add shadow variables so that code would compile. The problem is more apparent when the code uses structs heavily, in my mind, forcing only let binding, might even encourage the use of classes so that the let binding works for mutation. In an if let binding I already use the same name for the binding and adding a shadow variable makes code sort of ugly and repetitive for value optional types. </div><div><br></div>If let foo = foo, bar = bar {<div>    var foo = foo // don&#39;t need for classes</div><div>    var bar = bar //</div><div>         foo.mutare() <span></span></div><div>         bar.mutate()</div><div>}<br><div><br></div><div> </div><div><br>On Friday, January 22, 2016, David Farler via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello everyone,<br>
<br>
I&#39;d like to reconsider SE-0003 for Swift 3 and propose cancelling the change in its entirety. After collecting feedback since Swift&#39;s open source launch, I no longer feel this is a good move and there are a few reasons why.<br>
<br>
There are two main patterns that the removal penalizes:<br>
<br>
- Get-Modify-Reassign<br>
- Get-Modify-Return<br>
<br>
I&#39;ve found that many of the problems with this proposal stem from the uses before and after the &quot;Modify&quot; part, before returning or reassigning with the new value.<br>
<br>
I&#39;ve seen a few common responses to the var removal. Consider a `Rectangle` struct:<br>
<br>
<br>
struct Rectangle {<br>
 var origin: (x: Double, y: Double)<br>
 var size: (width: Double, height: Double)<br>
}<br>
<br>
<br>
Even with mutable variables `origin` and `size`, this pattern would be impossible:<br>
<br>
<br>
var selection = getRectangularSelection()<br>
if var rect = selection?.rect {<br>
 // Mutate `rect` ...<br>
 selection.rect = rect<br>
}<br>
<br>
<br>
So, one might shadow the variable, which is not ideal:<br>
<br>
<br>
var selection = getRectangularSelection()<br>
if let rect = selection?.rect {<br>
 var rect = rect // Not so great<br>
 // Mutate `rect` ...<br>
 selection.rect = rect<br>
}<br>
<br>
<br>
Or, you might make a transformation function on `Rect`:<br>
<br>
<br>
struct Rectangle {<br>
 var origin: (x: Double, y: Double)<br>
 var size: (width: Double, height: Double)<br>
 func withOrigin(x: Double, y: Double) -&gt; Rect {<br>
   var r = self<br>
   r.origin = (x, y)<br>
   return r<br>
 }<br>
}<br>
<br>
<br>
This is a much better solution than shadowing but you would need one of these for any property that you want to mutate and I think you&#39;ll agree that it doesn&#39;t scale with the language we have today. This response begs for a kind of initializer that takes all of the fields of the original struct except any that you want to override:<br>
<br>
<br>
if let rect = selection?.rect.with(origin: newOrigin) {<br>
 // ...<br>
}<br>
<br>
<br>
Straw syntax, but maybe you&#39;ll see something along these lines on swift-evolution in the future, which would provide a clear alternative to direct mutation patterns. Even then, I think having complementary patterns in the language isn&#39;t a bad thing.<br>
<br>
These problems come up with the other variable bindings but the one that ended up bothering me the most was `guard var`:<br>
<br>
<br>
func transform(selection: Rect?) {<br>
 guard let rect = selection else { return }<br>
 var _rect = rect<br>
 // Mutate `_rect` ...<br>
}<br>
<br>
<br>
One of the guard statement&#39;s main purposes is to conditionally bind a value as a peer in its own scope, not an inner scope like if statements. Not having var makes the guard statement much weaker.<br>
<br>
There is certainly a bit of confusion about the nuances between value and reference semantics, who owns a value and when, how effects are propagated back to values, but I think we can attack the problem with more finesse.<br>
<br>
Value types are one of the attractive features of Swift – because of their semantics, mutating algorithms are written in a familiar style but keeping effects limited to your unique reference. I don&#39;t think we should give that up now to address confusion about semantics, out of principle, or in anticipation of new language features. I propose cancelling this change for Swift 3 and continue to allow `var` in the grammar everywhere it occurs in Swift 2.2.<br>
<br>
Regards,<br>
David<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;swift-evolution@swift.org&#39;)">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div></div>