Perhaps another candidate for sinking into `Syntax`?<br><div class="gmail_quote"><div dir="ltr">On Fri, Jul 1, 2016 at 14:23 Dmitri Gribenko 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">On Fri, Jul 1, 2016 at 12:16 PM, Eric Habberstad via swift-evolution<br>
&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; To the Swift community,<br>
&gt;<br>
&gt; May I put forth a couple of new names for the following protocol:<br>
&gt;<br>
&gt;<br>
&gt; - CustomStringConvertible  —   rename as ‘Descriptive’ or as ‘Revealable’<br>
&gt;<br>
&gt;<br>
&gt; Two goals for Swift is clarity and joy in use of the language, so I strongly<br>
&gt; feel that ‘Custom-‘ not be part of any new name here since it contributes<br>
&gt; little except verbosity<br>
<br>
Hi Eric,<br>
<br>
This protocol was called Printable before, but it caused a lot of<br>
confusion for developers, and was guiding the developers toward<br>
writing incorrect APIs.  We have seen a lot of developers writing code<br>
like this:<br>
<br>
func printAll(_ values: [Printable]) {<br>
  for v in values { print(v) }<br>
}<br>
<br>
This code is unnecessarily restrictive since in Swift everything can<br>
be converted into a String.<br>
<br>
func printAll(_ values: [Any]) {<br>
  for v in values { print(v) }<br>
}<br>
<br>
The same goes for retrieving debug descriptions and mirrors.  Any<br>
value can do that.  It is just that some values can opt into<br>
customizing this behavior.<br>
<br>
Thus, we renamed the protocols, adding the Custom~ prefix.  Our<br>
intention was to encourage only conformances to these protocols, and<br>
discourage writing APIs against them.<br>
<br>
Dmitri<br>
<br>
--<br>
main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>
(j){printf(&quot;%d\n&quot;,i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</a>&gt;*/<br>
_______________________________________________<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>