<div dir="ltr">I&#39;m not sure how I feel about this, but in either case, why limit it to default parameters? It&#39;s useful in other situations, too.<div><br></div><div>Take this for example:</div><div>struct Foo {</div><div>    let bar: String</div><div>    let bas: Int</div><div>    let baz: Double</div><div>    init(self.bar: String, self.bas: Int, bax: Int) {</div><div>        self.baz = Double(bax)</div><div>    }</div><div>}</div><div><br></div><div>where the need to say</div><div><br></div><div>self.bar = bar</div><div>self.bas = bas</div><div><br></div><div>is now avoided.</div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Dec 4, 2015 at 3:16 PM Tal Atlas &lt;<a href="mailto:me@tal.by">me@tal.by</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">There’s lots of boilerplate of initializing structs with stored properties and initializer parameters. I’d like to create a syntax for alleviating that in the 90% case.<div><br></div><div>```swift</div><div><div>struct Foo {</div><div>    let bar: String</div><div>    let baz: Int</div><div><br></div><div>    init(self.bar: String = &quot;default&quot;, counter self.baz: Int) {</div><div>    }</div><div>}</div></div><div>```</div><div><br></div><div>This would be identical to:</div><div>```swift</div><div><div>struct Foo {</div><div>    let bar: String</div><div>    let baz: Int</div><div><br></div><div>    init(bar: String = &quot;default&quot;, counter baz: Int) {</div><div>        self.bar = bar</div><div>        self.baz = baz</div><div>    }</div><div>}</div></div><div>```</div></div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=4Q3dO0ELn940F2HNV6NWP3n6-2BFmLgXvEeytAtbr-2BgeDjXIPyyMbjq9G0JfeQzz9WnsbJBYDj0ld8xKG0k9Pe-2B6zZcWO1GEZDkVL-2FCGOPH9cApFGwawJSOc83rktiBCKxaRdcy1D8mKgzhjO2T-2FKfoRdWdMrPChURl7ayI3aW6YmNT4UeczuHWZ4IFNjFSE-2BnNyQTmxEuFMXWox6-2FrxmQ7zFi2iORpYT5sAsW4IAphgM-3D" alt="" width="1" height="1" border="0" style="min-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">
_______________________________________________<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>
</blockquote></div><div dir="ltr">-- <br></div><div dir="ltr"><div><div>Dan Appel<br></div></div></div>