<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div><br><br>Sent from my iPad</div><div><br>On May 25, 2016, at 6:11 PM, Dmitri Gribenko via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, May 25, 2016 at 3:42 PM, Leonardo Pessoa <span dir="ltr">&lt;<a href="mailto:me@lmpessoa.com" target="_blank">me@lmpessoa.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Wednesday, 25 May 2016, Dmitri Gribenko via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Wed, May 25, 2016 at 2:52 PM, David Hart &lt;<a>david@hartbit.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; On 25 May 2016, at 23:47, Dmitri Gribenko &lt;<a>gribozavr@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; On Wed, May 25, 2016 at 2:43 PM, David Hart via swift-evolution<br>
&gt;&gt; &lt;<a>swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;&gt; Impact on Existing Code<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This is a breaking change that will require conforming types which relied on<br>
&gt;&gt;&gt; the inference, including in the Standard Library, to explicitly declare<br>
&gt;&gt;&gt; associated types. A Fix-It could be introduced to add the typealias and<br>
&gt;&gt;&gt; leave the type to be filled in. That way, all the type inference could be<br>
&gt;&gt;&gt; removed from the compiler.<br>
&gt;&gt;<br>
&gt;&gt; Please show an example -- for example, what a smallest collection type<br>
&gt;&gt; will look like.<br>
&gt;<br>
&gt; Isn’t that the example in the Detailed Design section? What other example were you thinking of?<br>
<br>
You are showing an iterator.&nbsp; Try doing a collection, it has many more<br>
associated types most of which are defaulted.<br>
<br>
&gt;&gt;&gt; Alternatives Considered<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; The only alternative is to keep the inference with the known consequences on<br>
&gt;&gt;&gt; the compiler.<br>
&gt;&gt;<br>
&gt;&gt; Sorry, that's not fair :)&nbsp; There is a middle ground -- limited<br>
&gt;&gt; inference.&nbsp; For example, in Collection, we don't need Index to be<br>
&gt;&gt; inferrable from every declaration that mentions it.&nbsp; We can add a<br>
&gt;&gt; feature to declare that the type of 'var startIndex' infers<br>
&gt;&gt; 'associatedtype Index' (via an appropriate attribute).&nbsp; It is true<br>
&gt;&gt; that this approach would not remove global inference as such, but it<br>
&gt;&gt; will make it a much easier problem I believe.<br>
&gt;<br>
&gt; This sounds like a more complicated solution: it does not remove global inference and complicates the language with an additional attribute only to help the compiler. I don’t see many advantages to this solution.<br>
<br>
The advantage is that we can keep the boilerplate down, and make the<br>
problem easier in the compiler.</blockquote><div><br></div></div></div><div>If the issue is easing the work of the compiler, are you suggesting dropping the entire type inference? I don't really think removing it here will "solve" anything.</div><div></div></blockquote></div><div class="gmail_extra"><br></div>No, I'm suggesting to limit the scope.</div><div class="gmail_extra"><br></div><div class="gmail_extra">protocol Collection {</div><div class="gmail_extra">&nbsp; typealias Index</div><div class="gmail_extra">&nbsp; @infers(Index)</div><div class="gmail_extra">&nbsp; var startIndex: Index { get }</div><div class="gmail_extra">&nbsp; var endIndex: Index { get }</div><div class="gmail_extra">&nbsp; subscript(i: Index) -&gt; Iterator.Element</div><div class="gmail_extra">}<br><br>Here, only 'var startIndex' in a conforming type would be causing 'Index' to be inferred. &nbsp;'endIndex' and subscript won't have any effect on the inference.&nbsp; My suggestion is that we will only allow one such declaration to exist.&nbsp; This is a much simpler problem, I think, than solving a constraint system that involves all declarations that mention Index (as it is now).</div></div></div></blockquote><div><br></div>And IMO it's much more acceptable to do something like this that only impacts protocol declarations than to remove associated type inference altogether and place a burden on every conformance.<div><br><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><br></div><div class="gmail_extra">Dmitri<br clear="all"><div><br></div>-- <br><div class="gmail_signature">main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>(j){printf("%d\n",i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</a>&gt;*/</div>
</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></div></body></html>