<div dir="ltr">I am against requiring empty angle brackets. I could live with it either way, but I think that one reason to provide default types is to hide the detail that there is a type parameter until such a time as it is needed.  Empty angle brackets call attention to the feature in a manner that discards any possible gains on this front. Empty angle brackets would be confusing to explain to someone new to the language and–more importantly–shouldn&#39;t be necessary to explain in the &quot;falling back to defaults&quot; case.</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 23, 2017 at 1:41 PM, Trent Nadeau via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">The proposal looks good to me with one possible concern. I&#39;m leaning toward types that use the defaults should still require the angle brackets, X&lt;&gt;. This makes it clear that you&#39;re using a generic type. That leads me to think that the examples Doug gave should be an error as the explicit types on the `let`s should either be omitted completely or fully specified (as X&lt;&gt;, X&lt;Double&gt;, X&lt;Int&gt;, etc.).</div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, Jan 23, 2017 at 1:21 PM, Joe Groff via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div style="word-wrap:break-word"><span><br><div><blockquote type="cite"><div>On Jan 23, 2017, at 9:51 AM, Douglas Gregor via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_-4669255808847500601m_2740357066933401872Apple-interchange-newline"><div><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On Jan 23, 2017, at 7:55 AM, Srđan Rašić via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_-4669255808847500601m_2740357066933401872Apple-interchange-newline"><div><div dir="ltr">Hi Everyone,<div><br></div><div>I&#39;ve opened a PR (<a href="https://github.com/apple/swift-evolution/pull/591" target="_blank">https://github.com/apple/swif<wbr>t-evolution/pull/591</a>) proposin<wbr>g default generic arguments which I think would be nice addition to the language. They are also mentioned in &quot;Generic manifesto&quot;. </div><div><br></div><div>The proposal is focusing around generic types. Generic functions are not coved by the proposal and I don&#39;t think that we need default generic arguments in generic functions as all the types are always part of the function signature so the compiler can always infer them. One corner case might be if using default argument values in which case support for default generic arguments in functions might be useful.</div></div></div></blockquote><div><br></div><div>The proposal looks fairly straightforward and reasonable. One thing to think about is how it interacts with type inference. For example, consider these examples:</div><div><br></div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>struct X&lt;T = Int&gt; { }</div><div><br></div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>func f1() -&gt; X&lt;Double&gt; { return X() }</div><div><br></div><div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>func f2() -&gt; X&lt;Int&gt; { return X() }</div><div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>func f2() -&gt; X&lt;Double&gt; { return X() }</div></div><div><br></div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>func f3&lt;T&gt;(_: T) -&gt; X&lt;T&gt; { return X() }</div><div><br></div></div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>let x1: X = f1()   // okay: x1 has type X&lt;Double&gt;?</div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>let x2: X = f2()   // ambiguous?</div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>let x3a: X = f3(1.5)   // okay: x3a has type X&lt;Double&gt;?</div><div><div><span class="m_-4669255808847500601m_2740357066933401872Apple-tab-span" style="white-space:pre-wrap">        </span>let x3b: X = f3(1)   // okay: x3a has type X&lt;Int&gt;?</div><div><br></div>The type checker already has some notion of “if you can’t infer a particular type, fill in a default” that is used for literals. That rule could be used here… or we could do something else. This should be discussed in the proposal.</div><div><br></div><div>Thanks for working on this!</div></div></div></blockquote><br></div></span><div>There&#39;s an interesting parallel to the default behavior of literals. The type of a number or string literal is inferred from type context, or falls back to a default type like Int or String if that doesn&#39;t come up with an answer. You could think of that of saying the &#39;Self&#39; type of the protocol constraint has a default (and maybe that&#39;s how we&#39;d generalize the &quot;default type for a protocol&quot; feature if we wanted to.) It makes sense to me to follow a similar model for generic parameter defaults; that way, there&#39;s one consistent rule that applies.</div><div><br></div><div>-Joe</div><br></div><br></div></div>______________________________<wbr>_________________<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/mailma<wbr>n/listinfo/swift-evolution</a><br>
<br></blockquote></div><span class="HOEnZb"><font color="#888888"><br><br clear="all"><div><br></div>-- <br><div class="m_-4669255808847500601gmail_signature" data-smartmail="gmail_signature">Trent Nadeau</div>
</font></span></div>
<br>______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br></blockquote></div><br></div>