<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div></div><div>Sorry, but I don't see an advantage over the current form. Introducing a new syntactical variant just to be able to drop the type name does not pull its own weight IMO.</div><div><br></div><div>-Thorsten&nbsp;</div><div><br>Am 24.03.2016 um 11:22 schrieb Hugues Bernet-Rollande via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;:<br><br></div><blockquote type="cite"><div>In a strongly typed language, such as Swift is, type inference is greatly appreciated as it declutter the instance type definition.<div><div><br></div><div>For example, in the following statement, the compiler easily deduct the type of `aString` by the return type of `String.init()`</div><div><br></div><div>```</div><div>let aString = String()</div><div>```</div><div><br></div><div>Optional are generic enum which can contain a value of a generic type or nil (<a href="https://github.com/apple/swift/blob/master/stdlib/public/core/Optional.swift">https://github.com/apple/swift/blob/master/stdlib/public/core/Optional.swift</a>)</div><div><br></div><div><span style="line-height: 19.6px;">Sometime you may want specify that the instance is of type optional in which even if you are a the same time assigning a value to this instance.</span></div><div><span style="line-height: 19.6px;">In which case you loose the type inference mechanism&nbsp;and you have to define both (the optionality as well as the type).&nbsp;</span></div><div style="line-height: 19.6px;">For example, you may want specify an optional String with a default value.</div><div><br></div><div>```</div><div>var a:String? = String()</div><div>// or</div><div>var b = String() as String?</div><div>// or</div><div>var c:Optional&lt;String&gt; = String()<br></div><div>```</div><div><br></div><div>But the compiler can already infer the variable type from this assignment, it just miss the "optionality" of the variable.</div><div>It would be nice to be able to express this.</div><div><br></div><div>Then for, I propose the following syntax evolution:</div><div><br></div><div>```</div><div>var a:? = String()</div><div>// and/or (not recommended because more prone to typo and unclear...)</div><div>var a = String() as?</div><div>```</div><div><br></div><div>This would allow for more synthetic optional declaration.</div><div><br></div><div>I've draft a proposal on my `swift-evolution` fork:</div><div><span class="Apple-tab-span" style="white-space:pre">        </span><span style="line-height: 1.4;"><a href="https://github.com/huguesbr/swift-evolution/blob/optionality-type-with-type-inference/proposals/0057-optionality-type-with-type-inference.md">https://github.com/huguesbr/swift-evolution/blob/optionality-type-with-type-inference/proposals/0057-optionality-type-with-type-inference.md</a></span></div><div><span style="line-height: 1.4;"><br></span></div><div><span style="line-height: 1.4;">Let me know what you think.</span></div><div><br></div><div class="nylas-n1-signature"><p style="margin-bottom: 0px; font-stretch: normal; line-height: normal; font-family: Avenir; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 19px;"><br></p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0);">Hugues BERNET-ROLLANDE</p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 16px;"><br></p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0);">--</p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0);"><a href="mailto:hugues@xdev.fr">hugues@xdev.fr</a></p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0);"><a href="http://www.xdev.fr">http://www.xdev.fr</a></p><p style="margin-bottom: 0px; font-stretch: normal; line-height: normal; font-family: Avenir; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 19px;">





</p><p style="margin-bottom: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: 'Sofia Pro Light'; -webkit-text-stroke-color: rgb(0, 0, 0);"><a href="http://www.linkedin.com/in/huguesbr">http://www.linkedin.com/in/huguesbr</a></p></div></div></div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>