I couldn&#39;t disagree more. Generic programming is a far more advanced concept than arrays and dictionaries, and learners should be able to use them without contending with angle brackets they don&#39;t understand.<br><br>Fundamentally, even for an experienced user of the language, working with Collections and Sequences requires more consideration than working with arrays. It&#39;s not just a matter of how these things are spelled. It seems like you want to punish users who don&#39;t have the time or inclination to genericize their algorithms by making them write more, in the hopes that if you make working with arrays difficult enough, people will switch to generic containers. That&#39;s bonkers.<br><br><div class="gmail_quote"><div dir="ltr">On Sat, May 28, 2016 at 14:38 Haravikk via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><div><blockquote type="cite"><div>On 27 May 2016, at 15:31, plx via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><div><div style="word-wrap:break-word"><div><br></div></div></div></blockquote><blockquote type="cite"><div style="word-wrap:break-word"><div>  protocol Sequence {</div></div></blockquote></div></div></div><div style="word-wrap:break-word"><div><div><blockquote type="cite"><div style="word-wrap:break-word"><div>    typealias of&lt;E&gt; == S: Self where S.Iterator.Element == E</div><div>  }</div><div><br></div></div></blockquote></div></div></div><div style="word-wrap:break-word"><div><div><blockquote type="cite"><div style="word-wrap:break-word"><div>  // sequence-accepting variant</div><div>  func doSomething&lt;S:Sequence.of&lt;Foo&gt;&gt;(values: S) { … }</div></div></blockquote></div></div></div><div style="word-wrap:break-word"><div><div><blockquote type="cite"><div style="word-wrap:break-word"></div></blockquote><br></div><div>This is a nice alternative; would it actually need to be declared in the angle brackets? Could it be done as:</div><div><br></div><div><span style="white-space:pre-wrap">        </span><span style="font-family:Menlo;font-size:11px;color:rgb(187,44,162)">func</span><span style="font-family:Menlo;font-size:11px"> doSomething(values:</span><span style="font-family:Menlo;font-size:11px;color:rgb(112,61,170)">Sequence</span><span style="font-family:Menlo;font-size:11px">.</span><span style="font-family:Menlo;font-size:11px;color:rgb(112,61,170)">of</span><span style="font-family:Menlo;font-size:11px">&lt;</span><span style="font-family:Menlo;font-size:11px;color:rgb(112,61,170)">Foo</span><span style="font-family:Menlo;font-size:11px">&gt;) { … }</span></div><div><br></div><div>As long as it would work the same as a generic declaration this could be a good way to do it, either that or a SequenceOf type alias as mentioned.</div></div><div><br></div><div><br></div><div>Still, I kind of feel like we need to do something with the array type shorthand, but I wonder if perhaps we could just get rid of it altogether, to prevent its use entirely? i.e- all instances of [Foo] can be replaced with Array&lt;Foo&gt;, but we would encourage the use of Sequence.of/SequenceOf/Collection.of/CollectionOf first wherever possible.</div><div><br></div><div>As more types become available that are ArrayLiteralConvertible it seems like we should discourage restriction of a parameter to Array except when a developer explicitly chooses it. This problem will come up with the Dictionary type shorthand as well if Swift gets some kind of Map protocol to abstract it, and we don’t even have a Set-specific syntax so it seems like it may be fairer to remove these shorthands.</div></div>_______________________________________________<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>