<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div></div><div><br></div><div><br>Am 10.03.2016 um 05:35 schrieb Howard Lovatt via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;:<br><br></div><blockquote type="cite"><div><div dir="ltr">I am sure you know the answer for Swift; but in other languages it doesn't, e.g. Java.&nbsp;<div><br></div><div>With Java semantics:<div><br></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><span style="font-size:12.8px">func foo&lt;Input, Output&gt;(input: Input) -&gt; Output</span></div></blockquote><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Would be the same as:</span></div><div><span style="font-size:12.8px"><br></span></div><div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><span style="font-size:12.8px">func foo(input: Any) -&gt; Any</span></blockquote></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Because the only constraint on both Input and Output is Any.&nbsp;</span><span style="font-size:12.8px">Since the Java compiler erases generics, the two would literally be the same to the JVM!</span></div></div></div></div></blockquote><div><br></div>To the JVM at runtime, but not to the typechecker at compile time. There it works just as in Swift.<div><br></div><div>-Thorsten&nbsp;</div><div><br></div><div><br><blockquote type="cite"><div><div dir="ltr"><div><span style="font-size:12.8px">Since Swift doesn't allow overloading on return type and therefore as it stands `</span><span style="font-size:12.8px">func foo&lt;Input, Output&gt;(input: Input) -&gt; Output` cannot be&nbsp;implemented, it would be nice if the compiler flagged this as an error and suggested that you meant `</span><span style="font-size:12.8px">func foo(input: Any) -&gt; Any`</span><span style="font-size:12.8px">.</span></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature">&nbsp; -- Howard.<br></div></div>
<br><div class="gmail_quote">On 10 March 2016 at 13:07, Joe Groff <span dir="ltr">&lt;<a href="mailto:jgroff@apple.com" target="_blank">jgroff@apple.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
&gt; On Mar 9, 2016, at 6:02 PM, Howard Lovatt &lt;<a href="mailto:howard.lovatt@gmail.com">howard.lovatt@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Wow, I would never have guessed that syntax :)<br>
&gt;<br>
&gt; It makes no sense to me to interpret a generic constraint as meaning all instead of any. How could anything either accept or return all possible implementations of something simultaneously, surely it only ever accepts or returns one of all the possible implementations at a time.<br>
<br>
</span>A type variable in angle brackets always means "all". It's like a function parameter, but at type level—it's in the caller's hands what it gets bound to. You couldn't write a function `func foo&lt;Input, Output&gt;(Input) -&gt; Output` unless that function was able to generate a value of every possible type a caller might pass in for Output, just like you couldn't write e.g. 'absolute value' as taking its result as a second parameter.<br>
<span class=""><br>
&gt;<br>
&gt; If the interpretation for output is that at time 1 it returns one of all the possible implementations at at time 2&nbsp; returns another - then that is what I want. However I would describe that as returning one of the possible implementations, not all.<br>
&gt;<br>
&gt; But no doubt you are correct, since you probably wrote that bit of the compiler :(<br>
&gt;<br>
&gt; More practical points<br>
&gt;<br>
&gt;&nbsp; 1. My compiler, 7.3 beta (7D152p), rejects the syntax, it doesn't like where inside Any&lt;&gt; saying it expects &gt; to complete generic argument list. When will this be available, so that I can try it out?<br>
&gt;&nbsp; 2. Will the declarations inside protocols also change to the Any&lt;...&gt; form or will all the generics remain following the function name rather in a returned Any&lt;...&gt;? Currently -&gt; Any&lt;...&gt; doesn't work in protocols for me.<br>
&gt;&nbsp; 3. In the construct Any&lt;Protocol where Type == Type&gt;, i.e. same type name used in protocol and enclosing struct/class/extension, does the left Type refer to the protocol or the enclosing struct/class/extension?<br>
&gt;&nbsp; 4. Is there any documentation of all of this?<br>
<br>
</span>Sorry, this is all possible future syntax and features. It's not implemented today. You'd need to write your own equivalent of the "Any" wrapper by hand right now.<br>
<span class="HOEnZb"><font color="#888888"><br>
-Joe<br>
<br>
</font></span></blockquote></div><br></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>