<div><div dir="auto">Besides the comments below on consensus about how to deal with the documentation aspect, I should point out that your example is incorrect. != is not a protocol requirement of Equatable with a default implementation, but a protocol extension method that cannot be overridden which is *not* a protocol requirement. That is by design.</div><div dir="auto"><br></div><div dir="auto">Additionally, it is unclear to me why default implementations should need be provided in the same file, as your solution requires. There are good reasons why library A that builds upon library B might supply a default implementation in an extension for a protocol B.P that refines B.Q. To the end user, it is just as much of a default that doesn’t need to be implemented when conforming to P, but your proposed solution does nothing to address this issue.</div><div dir="auto"><br></div><br><div class="gmail_quote"><div>On Wed, Aug 2, 2017 at 03:54 Gor Gyolchanyan 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">Good day, swift community!<div>This time, I&#39;d like to bring your attention to an everyday problem which, I&#39;m sure, you&#39;ve all dealt with at some point.</div><div><br></div><div><b>Motivation</b></div><div><br></div><div>Many protocols have a lot of default-implemented requirements so that they can be customized, which would otherwise be impossible to do.</div><div>For example, the <font color="#4f7a28" face="Menlo">Comparable</font> protocol, which (considering its inheritance of <font face="Menlo" color="#4f7a28">Equatable</font>) states a requirement of <font face="Menlo">==</font>, <font face="Menlo">!=</font>, <font face="Menlo">&lt;</font>, <font face="Menlo">&lt;=</font>, <font face="Menlo">&gt;</font>, and <font face="Menlo">&gt;=</font>, only requires implementation of <font face="Menlo">==</font> and <font face="Menlo">&lt;</font>, because all others have default implementations in terms of these two. This forces the user to either memorize the exact set of mandatory requirements or, in case of more complicated protocols like <font face="Menlo" color="#4f7a28">Collection</font>, constantly look up the documentation and hope that it has a section outlining how to conform to it.</div><div>Conversely, the author of the protocol needs to manually keep track of the requirements and their default implementations to ensure that the ones that have to be mandatory stay mandatory and the rest of the requirements stay default-implemented, which is also a tedious and error-prone work.</div><div><br></div><div><b>Proposed Solution</b></div><div><br></div><div>I&#39;d like to propose the ability to mark select protocol requirements as <font color="#b92d5d" face="Menlo">default</font>, which would cause the following effects:</div><div><ul class="m_-3206054945558180310MailOutline"><li>The compiler will emit a compile-time error if a default implementation is not available in a non-constrained protocol extension in the same file and provide a fix-it for inserting a template.</li><li>If a conforming type does not implement all requirements of the protocol, the compiler will not produce fix-its for inserting a template for any <font color="#b92d5d" face="Menlo">default</font> requirements.</li></ul></div><div><br></div><div><b>Example</b></div><div><br></div><div><font face="Menlo" color="#7a7a7a">// Equatable.swift</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><font color="#b92d5d">protocol</font> <font color="#4f7a28">Equatable</font> {</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span><font color="#b92d5d">static</font> <font color="#b92d5d">func</font> == (_ some: <font color="#b92d5d">Self</font>, _ other: <font color="#b92d5d">Self</font>) -&gt; <font color="#4f7a28">Bool</font></font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span><font color="#b92d5d">default</font> <font color="#b92d5d">static</font> <font color="#b92d5d">func</font> != (_ some: <font color="#b92d5d">Self</font>, _ other: <font color="#b92d5d">Self</font>) -&gt; <font color="#4f7a28">Bool</font></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span></font><font color="#e32400"><i><font style="font-family:Menlo">^ error: missing implementation of a default requirement `!=`; </font><font style="font-family:Menlo">fix-it: insert a default implementation</font></i></font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">}</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><font color="#b92d5d">extension</font> <font color="#4f7a28">Equatable</font> {</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span></font><font color="#b92d5d" face="Menlo">static</font><span style="font-family:Menlo"> </span><font color="#b92d5d" face="Menlo">func</font><span style="font-family:Menlo"> != (_ some: </span><font color="#9a244f" style="font-family:Menlo">Self</font><span style="font-family:Menlo">, _ other: </span><font color="#9a244f" style="font-family:Menlo">Self</font><span style="font-family:Menlo">) -&gt; </span><font color="#4f7a28" face="Menlo">Bool</font><font face="Menlo"> {</font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">                </span><b>[<font color="#4d22b3">Your Code Here]</font></b></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span>}</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">}</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo" color="#929292">// Something.swift</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><font color="#b92d5d">struct</font> <font color="#4f7a28">Something</font>: <font color="#4f7a28">Equatable</font> {</font></div><div><i><font color="#e32400" style="font-family:Menlo">^ error: missing implementation of a non-default requirement `==`; </font><font color="#e32400" style="font-family:Menlo">fix-it: insert an implementation</font></i></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">}</font></div><div><br></div><div><div><font face="Menlo"><font color="#b92d5d">extension</font> </font><font color="#4f7a28" face="Menlo">Something</font><font face="Menlo"> {</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span></font><font color="#b92d5d" face="Menlo">static</font><span style="font-family:Menlo"> </span><font color="#b92d5d" face="Menlo">func</font><span style="font-family:Menlo"> == (_ some: </span><font color="#4f7a28" face="Menlo">Something</font><span style="font-family:Menlo">, _ other: </span><font color="#4f7a28" face="Menlo">Something</font><span style="font-family:Menlo">) -&gt; </span><font color="#4f7a28" face="Menlo">Bool</font><font face="Menlo"> {</font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">                </span><b>[<font color="#4d22b3">Your Code Here]</font></b></font></div><div><font face="Menlo"><span class="m_-3206054945558180310Apple-tab-span" style="white-space:pre-wrap">        </span>}</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">}</font></div></div><div><br></div><div>Cheers,</div><div>Gor Gyolchanyan.</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></div>