<div dir="ltr"><div>Yes, this is probably better founded. </div><div><br></div><div>Right now Swift doesn&#39;t have a blessed nothing type, the closest you can get is enum Nothing { }, and that type doesn&#39;t participate in subtyping relationships (it&#39;s not really a Bottom type like Scala&#39;s). Proposing such an expansion to the type system is beyond the scope of this proposal, although the &quot;associated types&quot; section should certainly be written such that generalizing it would be trivial if Swift did get contravariant types and a Bottom type.<br></div><div><br></div><div>Austin</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, May 23, 2016 at 11:24 AM, Thorsten Seitz <span dir="ltr">&lt;<a href="mailto:tseitz42@icloud.com" target="_blank">tseitz42@icloud.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 style="word-wrap:break-word"><br><div><span class=""><blockquote type="cite"><div>Am 23.05.2016 um 18:08 schrieb Austin Zheng &lt;<a href="mailto:austinzheng@gmail.com" target="_blank">austinzheng@gmail.com</a>&gt;:</div><br><div><div style="word-wrap:break-word"><div><blockquote type="cite"><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">I think that *all* methods should be available - at least in principle - with associated types </span><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">- replaced by their upper bounds (i.e. Any if no constraints have been given either by the protocol definition itself or th existential) if in covariant position and </div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">- replaced by their lower bounds if in contravariant position</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">As it is not possible to define lower bounds in Swift, the lower bounds are always the bottom type (called `Nothing` in Swift and not be confused with optionals). The bottom type has no members and therefore a method referencing that type cannot be called and is effectively not available.</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div></blockquote><div><br></div><div>Thanks for the feedback! So methods that have associated types in contravariant position would have those types be Nothing, unless there was a concrete type bound to that associated type in the Any&#39;s where clause?</div><div><br></div><div>Example</div><div><br></div><div>protocol MyProtocol {</div><div>  associatedtype AssocType1</div><div>  associatedtype AssocType2</div><div>  func foo(x: AssocType1, y: AssocType2)</div><div>}</div><div><br></div><div>let a : Any&lt;MyProtocol&gt;</div><div>// on &#39;a&#39;, foo is exposed as &#39;foo(x: Nothing, y: Nothing)&#39;, and can thus not be called</div><div><br></div><div>let b : Any&lt;MyProtocol where .AssocType1 == Int&gt;</div><div>// on &#39;b&#39;, foo is exposed as &#39;foo(x: Int, y: Nothing)&#39; and still can&#39;t be called</div><div><br></div><div>let c : Any&lt;MyProtocol where .AssocType1 == Int, .AssocType2 == String&gt;</div><div>// on &#39;c&#39;, foo is exposed as &#39;foo(x: Int, y: String)&#39;, and can therefore be called</div><div><br></div><div>Let me know if this is what you had in mind.</div></div></div></div></blockquote><div><br></div></span>Yes, that’s what I had in mind. </div><div><br></div><div>IMHO this would make for simple rules and if Swift might one day get the ability to specify lower bounds this would easily fit in (I don’t know how useful that would be in reality, but I think Scala allows the declaration of lower bounds).</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>-Thorsten</div><br></font></span></div></blockquote></div><br></div>