<div dir="ltr">The problem for me is that is so counter intuitive I didn&#39;t even know you could do that.</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 5, 2016 at 12:50 PM, Jeremy Pereira <span dir="ltr">&lt;<a href="mailto:jeremy.j.pereira@googlemail.com" target="_blank">jeremy.j.pereira@googlemail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I don’t understand what the problem is<br>
<span class=""><br>
&gt; On 5 Jan 2016, at 12:39, James Campbell via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; See this code:<br>
&gt; var distanceCache: [Int: Int] = Dictionary&lt;Int, Int&gt;()<br>
&gt;<br>
&gt; It is very long and tedious to write especially if what I am storing changes.<br>
&gt;<br>
&gt; I propose we be allowed to do the following:<br>
&gt; var distanceCache: [Int: Int] = []<br>
<br>
</span>You can do<br>
<br>
var distanceCache: [Int: Int] = [:]<br>
<br>
Also<br>
<br>
var distanceCache2 = [Int: Int]()<br>
<span class=""><br>
<br>
&gt; Perhaps this dictionary syntax is just confusing and it was a bad idea to make it the same as an array. Most languages use &quot;{&quot; so why did swift choose to share &quot;[&quot; with arrays and dictionaries.<br>
<br>
</span>It’s not the same, you need the colons inside. I imagine that braces were discarded on the grounds that it would confuse the compiler with respect to closures, for example<br>
<br>
var myClosure = {} // is a variable of type () -&gt; ()<br>
<span class=""><br>
<br>
&gt;<br>
&gt; --<br>
&gt;  Wizard<br>
&gt; <a href="mailto:james@supmenow.com">james@supmenow.com</a><br>
&gt; <a href="tel:%2B44%207523%20279%20698" value="+447523279698">+44 7523 279 698</a><br>
</span>&gt;  _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <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>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div><span style="font-size:16px;line-height:19.2px"></span><span style="font-size:12.8px"> Wizard</span><br></div><div><a href="mailto:james@supmenow.com" target="_blank">james@supmenow.com</a></div><div>+44 7523 279 698</div></div></div></div></div></div>
</div>