<div dir="ltr">&gt; <span style="font-size:12.8px">Swift doesn&#39;t do implicit conformance.  It always has to be declared</span><br style="font-size:12.8px"><span style="font-size:12.8px">explicitly.  I&#39;m pretty sure Doug Gregor can explain why better than I</span><br style="font-size:12.8px"><span style="font-size:12.8px">could.</span><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">I don&#39;t think Daniel was arguing for implicit conformance, he&#39;s saying that if it makes sense for an object to have a default constructor, it makes sense for it to conform to the protocol which I agree with 100%.</span></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Dec 25, 2016 at 9:17 PM, Dave Abrahams via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span><br>
on Sun Dec 25 2016, Daniel Leping &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
<br>
&gt; You are right, usually it&#39;s required to implement a protocol which is not a<br>
&gt; good approach. The best is plain objects which can be used independently of<br>
&gt; ORM if needed (as DTOs, i.e.).<br>
&gt;<br>
&gt; I was thinking of DefaultConstructable as a protocol automatically applied<br>
&gt; to any class/struct having a default init, which is really logical for<br>
&gt; me.<br>
<br>
</span>Swift doesn&#39;t do implicit conformance.  It always has to be declared<br>
explicitly.  I&#39;m pretty sure Doug Gregor can explain why better than I<br>
could.<br>
<div><div class="m_-4530764108705073068h5"><br>
&gt; On Mon, 26 Dec 2016 at 9:41 Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 10:50 PM, Daniel Leping<br>
&gt;&gt; &lt;<a href="mailto:daniel@crossroadlabs.xyz" target="_blank">daniel@crossroadlabs.xyz</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Ok, an example from ORM. You have an entity factory with a virtual (read,<br>
&gt;&gt; overloadable in the subclasses) method populating the properties.<br>
&gt;&gt; DefaultConstructable is a great choice here. Otherwise you will have to<br>
&gt;&gt; force the users of your ORM to implement a certain protocol, which you most<br>
&gt;&gt; probably would like to avoid.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Sorry--I&#39;m not very familiar with using Swift for ORM purposes. Why do you<br>
&gt;&gt; want to avoid having your users conform to a certain protocol? Wouldn&#39;t the<br>
&gt;&gt; users of your ORM have to conform to `DefaultConstructible` then? I&#39;m<br>
&gt;&gt; looking at Swift ORMs, and all require users to conform to a protocol or<br>
&gt;&gt; inherit from a base class, typically named `Model` or similar. From a quick<br>
&gt;&gt; Google search:<br>
&gt;&gt;<br>
&gt;&gt; <a href="https://vapor.github.io/documentation/fluent/model.html" rel="noreferrer" target="_blank">https://vapor.github.io/docume<wbr>ntation/fluent/model.html</a><br>
&gt;&gt; <a href="https://github.com/blitzagency/amigo-swift" rel="noreferrer" target="_blank">https://github.com/blitzagency<wbr>/amigo-swift</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; In general I think the best showcase is generic factories.<br>
&gt;&gt;<br>
&gt;&gt; On Mon, 26 Dec 2016 at 9:02 Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 10:18 PM, Daniel Leping<br>
&gt;&gt; &lt;<a href="mailto:daniel@crossroadlabs.xyz" target="_blank">daniel@crossroadlabs.xyz</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Usually it&#39;s a generic function that needs to return a value from some<br>
&gt;&gt; other function or a default value (zero) in a case of some conditions.<br>
&gt;&gt; Optional value is an arguable solution in quite some scenarios. Afaik,<br>
&gt;&gt; sometimes it can be used for optional resolution.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Right, I&#39;d agree that Optional is the idiomatic way to do it. Afaict,<br>
&gt;&gt; there&#39;s not much you can do with a default value that you couldn&#39;t with<br>
&gt;&gt; nil, unless you have some guarantee as to _what_ that default is; however,<br>
&gt;&gt; I&#39;d expect that in every case that you can rely on a guarantee about a<br>
&gt;&gt; default value which would be more useful than nil, it&#39;s going to require<br>
&gt;&gt; more specific knowledge of your type than an all-encompassing<br>
&gt;&gt; `DefaultConstructible` can provide.<br>
&gt;&gt;<br>
&gt;&gt; Also, generic factories. Widely used in ORM solutions.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Can you elaborate on this? Why is Optional not a solution here?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; As mentioned above, algorythmical stuff that requires Zero.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m still not convinced there exist credible use cases that need to be<br>
&gt;&gt; generic over both collections and floating point, for instance. In fact, in<br>
&gt;&gt; my experience, there are few math-heavy algorithms where one can ignore<br>
&gt;&gt; even the distinction between integers and binary floating point. By the<br>
&gt;&gt; time you get down to matrix math, you start to run into difficulties that<br>
&gt;&gt; require separate implementations for Float and Double.<br>
&gt;&gt;<br>
&gt;&gt; On Mon, 26 Dec 2016 at 8:38 Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Can you give some examples of what you used this approach to do?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 9:49 PM, Daniel Leping<br>
&gt;&gt; &lt;<a href="mailto:daniel@crossroadlabs.xyz" target="_blank">daniel@crossroadlabs.xyz</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; +1 to this approach. I remember I had to create it on my own for my<br>
&gt;&gt; projects. Would be nice to have it out of the box.<br>
&gt;&gt;<br>
&gt;&gt; On Mon, 26 Dec 2016 at 8:11 Adam Nemecek via swift-evolution &lt;<br>
&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt; Yes, those particular types have initializers that take no arguments.<br>
&gt;&gt; That does not address my question. You merely restated your initial<br>
&gt;&gt; observation that many types in Swift have implemented `init()`.<br>
&gt;&gt;<br>
&gt;&gt; Right, it&#39;s an empirical argument.<br>
&gt;&gt;<br>
&gt;&gt; &gt; I didn&#39;t think the value returned by `init()` was regarded as any sort<br>
&gt;&gt; of zero--or even any sort of &quot;default.&quot; In fact, some types in Foundation<br>
&gt;&gt; have a static property called `default` distinct from `init()`.<br>
&gt;&gt;<br>
&gt;&gt; Let&#39;s not talk about those then. This would not apply to every single type<br>
&gt;&gt; in existence, as I&#39;ve stated previously.<br>
&gt;&gt;<br>
&gt;&gt; &gt; It gives you something different every time. How can this be squared<br>
&gt;&gt; with your stated motivation regarding concepts of zero and concepts of<br>
&gt;&gt; equality?<br>
&gt;&gt;<br>
&gt;&gt; Due to the fact that it&#39;s a resource, not a value. As I&#39;ve stated above,<br>
&gt;&gt; not all of this applies to types that are more resource-like.<br>
&gt;&gt;<br>
&gt;&gt; &gt; Or, it&#39;s what you get because that&#39;s the most trivial possible string.<br>
&gt;&gt; Quite simply, I do not think the designer of most types that implement<br>
&gt;&gt; `init()` have paused to wonder whether the value that you get is the<br>
&gt;&gt; identity element associated with the most useful and prominent operation<br>
&gt;&gt; that can be performed on that type. I certainly never have.<br>
&gt;&gt;<br>
&gt;&gt; This is an appeal to tradition.<br>
&gt;&gt;<br>
&gt;&gt; &gt; The statement I wrote was in JavaScript, so I&#39;m not sure what you mean<br>
&gt;&gt; by returning an optional. `[].reduce((a, b) =&gt; a + b)` results in an<br>
&gt;&gt; error in JavaScript. In Swift, such a function may also be implemented with<br>
&gt;&gt; a precondition that the array is not empty and would not return an optional.<br>
&gt;&gt;<br>
&gt;&gt; I was talking about their analogous swift implementations.<br>
&gt;&gt;<br>
&gt;&gt; &gt; Can you give an example of an algorithm dealing with tensors where you<br>
&gt;&gt; would use a `DefaultConstructible` generic over all types that have<br>
&gt;&gt; `init()`, as opposed to working with the existing `Integer`,<br>
&gt;&gt; `FloatingPoint`, and other numerical protocols?<br>
&gt;&gt;<br>
&gt;&gt; If it&#39;s implemented as either nested collections or numbers.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 6:00 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 7:30 PM, Adam Nemecek &lt;<a href="mailto:adamnemecek@gmail.com" target="_blank">adamnemecek@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt;  Is it well settled, either in Swift or in C++/Rust/etc., that the value<br>
&gt;&gt; returned by a default initializer/constructor is regarded as an identity<br>
&gt;&gt; element or zero?<br>
&gt;&gt;<br>
&gt;&gt; Int() == 0, String() == &quot;&quot; so to some extent by convention, a lot of types<br>
&gt;&gt; have a default value as is.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Yes, those particular types have initializers that take no arguments. That<br>
&gt;&gt; does not address my question. You merely restated your initial observation<br>
&gt;&gt; that many types in Swift have implemented `init()`.<br>
&gt;&gt;<br>
&gt;&gt; I didn&#39;t think the value returned by `init()` was regarded as any sort of<br>
&gt;&gt; zero--or even any sort of &quot;default.&quot; In fact, some types in Foundation have<br>
&gt;&gt; a static property called `default` distinct from `init()`. In Rust, the<br>
&gt;&gt; Default trait requires a function called `default()`, which is documented<br>
&gt;&gt; as being useful when you want &quot;some kind of default value, and don&#39;t<br>
&gt;&gt; particularly care what it is.&quot;<br>
&gt;&gt;<br>
&gt;&gt; I was asking whether there&#39;s some understanding, of which I&#39;ve been<br>
&gt;&gt; unaware, that the result of `init()` (or the equivalent in other languages)<br>
&gt;&gt; is expected to be some sort of zero or an identity element. I&#39;m not aware<br>
&gt;&gt; of any evidence to that effect. Are you?<br>
&gt;&gt;<br>
&gt;&gt; &gt; Is the thread that I get by writing `let t = Thread()` some kind of zero<br>
&gt;&gt; in any reasonable sense of the word?<br>
&gt;&gt;<br>
&gt;&gt; DefaultConstructibility makes less sense for types that represent some<br>
&gt;&gt; sort of resource but make sense for things that are values. But even in<br>
&gt;&gt; this case, Thread() gives you a default value for example if you are<br>
&gt;&gt; working with a resizable collection of threads.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; It gives you something different every time. How can this be squared with<br>
&gt;&gt; your stated motivation regarding concepts of zero and concepts of equality?<br>
&gt;&gt;<br>
&gt;&gt; A better question is why does thread currently implement a default<br>
&gt;&gt; constructor?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; It&#39;s an initializer that takes no arguments, because none are needed for a<br>
&gt;&gt; new thread. How else would you write it?<br>
&gt;&gt;<br>
&gt;&gt; &gt; Do you mean to argue that for an integer the additive identity should be<br>
&gt;&gt; considered &quot;more prominent and useful&quot; than the multiplicative identity?<br>
&gt;&gt; I&#39;m not aware of any mathematical justification for such a conclusion.<br>
&gt;&gt;<br>
&gt;&gt; I do. The justification is that if I call the default constructor of Int<br>
&gt;&gt; currently, I get the value of 0.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; This is backwards. Why do you believe that the value you obtain from<br>
&gt;&gt; `init()` is intended to be an identity element at all, let alone the most<br>
&gt;&gt; important one? (It&#39;s also circular reasoning. Since `init()` only ever<br>
&gt;&gt; gives you one value at a time, by your reasoning it demonstrates that every<br>
&gt;&gt; type must have one &quot;more prominent and useful&quot; identity, which is begging<br>
&gt;&gt; the question.)<br>
&gt;&gt;<br>
&gt;&gt; Which means that the binary operation must be addition.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Based on the value of `Int.init()`, you conclude that addition of integers<br>
&gt;&gt; is a &quot;more prominent and useful&quot; operation than multiplication? Again, this<br>
&gt;&gt; is backwards. Rather, we know that each numerical type belongs to multiple<br>
&gt;&gt; ring algebras; there is no basis for reckoning any as &quot;more useful.&quot; Since<br>
&gt;&gt; `init()` can only ever give us one value at a time, we know that `init()`<br>
&gt;&gt; cannot give a value that is a meaningful default with respect to any<br>
&gt;&gt; particular operation.<br>
&gt;&gt;<br>
&gt;&gt; If I call String() I get &quot;&quot; which is the identity of the + String<br>
&gt;&gt; operation.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Or, it&#39;s what you get because that&#39;s the most trivial possible string.<br>
&gt;&gt; Quite simply, I do not think the designer of most types that implement<br>
&gt;&gt; `init()` have paused to wonder whether the value that you get is the<br>
&gt;&gt; identity element associated with the most useful and prominent operation<br>
&gt;&gt; that can be performed on that type. I certainly never have.<br>
&gt;&gt;<br>
&gt;&gt; &gt; Going to your original example, I should add: other languages provide a<br>
&gt;&gt; version of `reduce` that doesn&#39;t require an initial result (for instance,<br>
&gt;&gt; JavaScript). In JavaScript, `[1, 2, 3].reduce((a, b) =&gt; a + b)` uses the<br>
&gt;&gt; element at array index 0 as the initial result, and the accumulator<br>
&gt;&gt; function is invoked starting with the element at array index 1. This is<br>
&gt;&gt; precisely equivalent to having `reduce` use the additive identity as the<br>
&gt;&gt; default initial result when + is the accumulator function and the<br>
&gt;&gt; multiplicative identity when * is the accumulator function (with the<br>
&gt;&gt; accumulator function being invoked starting with the element at array index<br>
&gt;&gt; 0). It does not require a DefaultConstructible protocol. What more<br>
&gt;&gt; ergonomic solution could be implemented using a monoidic wrapper type?<br>
&gt;&gt;<br>
&gt;&gt; These two will have different signatures. The reduce you describe returns<br>
&gt;&gt; an optional,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; The statement I wrote was in JavaScript, so I&#39;m not sure what you mean by<br>
&gt;&gt; returning an optional. `[].reduce((a, b) =&gt; a + b)` results in an error<br>
&gt;&gt; in JavaScript. In Swift, such a function may also be implemented with a<br>
&gt;&gt; precondition that the array is not empty and would not return an optional.<br>
&gt;&gt;<br>
&gt;&gt; the other one would returns the default value.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; In what scenario would you prefer to propagate a default after reducing a<br>
&gt;&gt; potential empty collection _without supplying an explicit default_ for that<br>
&gt;&gt; operation? This would certainly violate the Swift convention of not<br>
&gt;&gt; defaulting to zero and, I suspect, most users of Swift would not regard<br>
&gt;&gt; that as ergonomic at all.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Fundamentally the default constructibles are useful in numerical<br>
&gt;&gt; computations e..g. dealing with tensors.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Can you give an example of an algorithm dealing with tensors where you<br>
&gt;&gt; would use a `DefaultConstructible` generic over all types that have<br>
&gt;&gt; `init()`, as opposed to working with the existing `Integer`,<br>
&gt;&gt; `FloatingPoint`, and other numerical protocols? (I should also add, FWIW, I<br>
&gt;&gt; have never seen a generic algorithm written for integers or FP types that<br>
&gt;&gt; has preferred the use of `T()` over `0`.)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Dec 25, 2016 at 3:30 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
</div></div><span>&gt;&gt; On Sun, Dec 25, 2016 at 5:27 PM, Adam Nemecek &lt;<a href="mailto:adamnemecek@gmail.com" target="_blank">adamnemecek@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt; *Which* APIs become more ergonomic?<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ll get back to this question in a second if I may. This would be a<br>
&gt;&gt; longer discussion and I first want to make sure that before we get into the<br>
&gt;&gt; details that there is a possibility of this being introduced (I&#39;m asking if<br>
&gt;&gt; violating the no zero defaults is more important than slightly more<br>
&gt;&gt; ergonomic APIs). But to give a broad answer I think that the concept of a<br>
&gt;&gt; zero is closely related to the concept of equality (and all the things that<br>
&gt;&gt; build up on equality such as comparability and negation).<br>
&gt;&gt;<br>
&gt;&gt; &gt; 1) How does this square with Swift’s general philosophy to not default<br>
&gt;&gt; initialize values to “zero”?<br>
&gt;&gt;<br>
&gt;&gt; I actually wasn&#39;t aware of this philosophy. Despite this philosophy, look<br>
&gt;&gt; at how many types actually currently implement a default constructor.<br>
&gt;&gt;<br>
&gt;&gt;<br>
</span>&gt;&gt; (Not a rhetorical question:) Is it well settled, either in Swift or in<br>
<span>&gt;&gt; C++/Rust/etc., that the value returned by a default initializer/constructor<br>
</span>&gt;&gt; is regarded as an identity element or zero? Is the thread that I get by<br>
<span class="m_-4530764108705073068im m_-4530764108705073068HOEnZb">&gt;&gt; writing `let t = Thread()` some kind of zero in any reasonable sense of the<br>
&gt;&gt; word?<br>
&gt;&gt;<br>
&gt;&gt;<br>
</span><span class="m_-4530764108705073068im m_-4530764108705073068HOEnZb">&gt;&gt; Also can I ask what&#39;s the motivation behind this philosophy?<br>
&gt;&gt; I think that in Swift, default constructibility makes complete sense for<br>
&gt;&gt; (most?) structs, maybe less so for classes.<br>
&gt;&gt;<br>
&gt;&gt; &gt; 2) To your original example, it isn’t immediately clear to me that<br>
&gt;&gt; reduce should choose a default identity.  Some types (e.g. integers and FP)<br>
&gt;&gt; belong to multiple different ring algebras, and therefore have different<br>
&gt;&gt; identity values that correspond to the relevant binary operations.<br>
&gt;&gt;<br>
&gt;&gt; This is a good point that I&#39;ve considered as well but felt that for the<br>
&gt;&gt; most part, there is one particular identity and associated operation that<br>
&gt;&gt; is more prominent and useful than others. Furthermore, modeling different<br>
&gt;&gt; algebras isn&#39;t mutually exclusive with writing generic algorithms that rely<br>
&gt;&gt; on this protocol, you can always introduce some monoidic wrapper type that<br>
&gt;&gt; defines the more appropriate default value and operation.<br>
&gt;&gt;<br>
&gt;&gt;<br>
</span><span class="m_-4530764108705073068im m_-4530764108705073068HOEnZb">&gt;&gt; Do you mean to argue that for an integer the additive identity should be<br>
&gt;&gt; considered &quot;more prominent and useful&quot; than the multiplicative identity?<br>
&gt;&gt; I&#39;m not aware of any mathematical justification for such a conclusion.<br>
&gt;&gt;<br>
</span><span class="m_-4530764108705073068im m_-4530764108705073068HOEnZb">&gt;&gt; Going to your original example, I should add: other languages provide a<br>
&gt;&gt; version of `reduce` that doesn&#39;t require an initial result (for instance,<br>
&gt;&gt; JavaScript). In JavaScript, `[1, 2, 3].reduce((a, b) =&gt; a + b)` uses the<br>
&gt;&gt; element at array index 0 as the initial result, and the accumulator<br>
&gt;&gt; function is invoked starting with the element at array index 1. This is<br>
&gt;&gt; precisely equivalent to having `reduce` use the additive identity as the<br>
&gt;&gt; default initial result when + is the accumulator function and the<br>
&gt;&gt; multiplicative identity when * is the accumulator function (with the<br>
&gt;&gt; accumulator function being invoked starting with the element at array index<br>
&gt;&gt; 0). It does not require a DefaultConstructible protocol. What more<br>
&gt;&gt; ergonomic solution could be implemented using a monoidic wrapper type?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
</span><span class="m_-4530764108705073068im m_-4530764108705073068HOEnZb">&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailma<wbr>n/listinfo/swift-evolution</a><br>
&gt;<br>
<br>
</span><span class="m_-4530764108705073068HOEnZb"><font color="#888888">--<br>
-Dave<br>
</font></span><div class="m_-4530764108705073068HOEnZb"><div class="m_-4530764108705073068h5"><br>
______________________________<wbr>_________________<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/mailma<wbr>n/listinfo/swift-evolution</a><br>
</div></div></blockquote></div><br></div></div>