<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Fri, Dec 23, 2016 at 03:10 Callionica (Swift) &lt;<a href="mailto:swift-callionica@callionica.com" target="_blank">swift-callionica@callionica.<wbr>com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div class="gmail-m_-5062206332442488930gmail_msg">I&#39;m certainly assuming that users have a basic understanding of scope (without that, what would be the intention behind defining the class within the function?).</div></blockquote><div><br></div><div>The notion of closing over variables far exceeds what one might reasonably call &quot;a basic understanding of scope.&quot; I doubt I&#39;m alone on this opinion, as _Advanced Swift_ (an excellent text written for users already familiar with the basics) reviews closures and closure expressions from the ground up; by contrast, it does not review functions, classes, or even (if I recall correctly) defining classes inside functions.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div class="gmail-m_-5062206332442488930gmail_msg">I&#39;m not clear on what you see as the downside of letting classes capture locals for users that are unaware of capturing.</div></blockquote><div><br></div><div><div>It violates the notion of progressive disclosure, which has been an explicit design goal for Swift. In one of the documents on GitHub, the core team writes: &quot;One goal of swift is to provide a very &#39;progressive disclosure&#39; model of writing code and learning how to write code. Therefore, it is desirable that someone be able to start out with `print(&quot;hello world\n&quot;)` as their first application.&quot; Chris Lattner recently reiterated this idea in a presentation he gave at IBM about the Swift language.</div><div><br></div><div>The idea of progressive disclosure is that it should be possible to teach concepts a learner must understand first without exposing them to more advanced concepts they must pay attention to but cannot understand. Let&#39;s look at some examples:<br><br>- In Java, one cannot write &quot;Hello World&quot; without being exposed to `public static void main`. However, one cannot understand what it means to be a public or static method until _after_ one has mastered printing &quot;Hello World&quot;. This violates progressive disclosure.</div><div>- In Swift, one&#39;s first &quot;Hello World&quot; is a one-liner that introduces the print function and nothing else. This is progressive disclosure, and as quoted above, Swift has been explicitly designed that way.<br></div><div><br></div><div>- In Swift, `struct Point { let x, y: Int }` is a fully usable type. With that single line, you can now make a new `Point` by writing `let point = Point(x: 42, y: 42)`.</div><div>- To do a similar thing in some other languages, you&#39;d have to write a constructor or initializer. However, one cannot really understand what initialization is without first having initialized something, but one cannot initialize something unless there is an initializer. This violates progressive disclosure. In Swift, an initializer is synthesized for you; this promotes progressive disclosure.</div><div>- There have been proposals to change the default access level to private. If `x` and `y` were private, then `Point` would be unusable without access modifiers for its members. However, one must first understand how structs and other types encapsulate code before one can understand how access modifiers work, but one would not be able to create useful structs or other types without first using access modifiers. This would violate progressive disclosure. In Swift, the default access level is internal; this promotes progressive disclosure.</div><div><br></div><div>- In Swift, _closure expressions_ don&#39;t have to capture anything (i.e., they don&#39;t have to be true _closures_). But they are introduced as closure expressions rather than, say, function expressions, and they are taught in the same breath as the concept of capturing variables. This ensures that every person who reaches for a closure expression knows about its potential for capturing and extending the lifetime of a variable. Closure expression syntax and the concept of closing over its environment are thereby inextricably linked. Thus, one can be well assured that every user who extends the lifetime of a captured variable--unintentionally or no--has already been introduced to the fact that such a thing is a possibility.</div><div>- If a user who has mastered only functions and classes can silently extend the lifetime of a variable, this would be to that user an inexplicable behavior. One must teach someone either &quot;never&quot; to nest classes inside functions, or to do so only by putting classes before any other code, but one would not be able to explain to the learner _why_ that must be the case. This violates progressive disclosure.</div><div><br></div><div>Pedagogical points aside, introducing another way to extend the lifetime of a variable with a syntax that currently doesn&#39;t do so is, IMO, creating another avenue for footguns. I&#39;m not convinced that this functionality would be used intentionally more often that it would be triggered unintentionally and not discovered.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"></blockquote></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div class="gmail-m_-5062206332442488930gmail_msg"><div class="gmail_quote gmail-m_-5062206332442488930gmail_msg"><div class="gmail-m_-5062206332442488930gmail_msg">On Thu, Dec 22, 2016 at 11:26 PM Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">xiaodi.wu@gmail.com</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"></div><blockquote class="gmail_quote gmail-m_-5062206332442488930gmail_msg" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Only if you&#39;re also assuming that people defining classes within functions would know about capturing. This violates the principle of progressive disclosure, since people naturally learn about functions and classes before they learn about closures and capturing.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><div class="gmail_quote gmail-m_-5062206332442488930gmail_msg"><div class="gmail-m_-5062206332442488930gmail_msg">On Fri, Dec 23, 2016 at 01:51 Callionica (Swift) &lt;<a href="mailto:swift-callionica@callionica.com" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-callionica@callionica.<wbr>com</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"></div><blockquote class="gmail_quote gmail-m_-5062206332442488930gmail_msg" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div class="gmail-m_-5062206332442488930gmail_msg">Assuming capture were allowed, people defining classes within functions who didn&#39;t want them to capture could position the class definition prior to any other code in the function so that there would be nothing to capture. </div><div class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><div class="gmail_quote gmail-m_-5062206332442488930gmail_msg"><div class="gmail-m_-5062206332442488930gmail_msg">On Thu, Dec 22, 2016 at 4:13 PM Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"></div><blockquote class="gmail_quote gmail-m_-5062206332442488930gmail_msg" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">I have to agree with Michael; it seems dangerous to allow implicit capture by classes. A primary purpose (telos?) of closures is to provide this functionality, which is actually quite an advanced concept. One knows to think carefully about this when encountering a closure expression. A primary purpose of classes is to provide for encapsulation of code. Accidentally extending the lifetime of a local variable in a containing scope would be hard to notice and highly unexpected functionality. Better not to mix these things.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><div class="gmail_quote gmail-m_-5062206332442488930gmail_msg"><div class="gmail-m_-5062206332442488930gmail_msg">On Thu, Dec 22, 2016 at 17:54 Micah Hainline via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"></div><blockquote class="gmail_quote gmail-m_-5062206332442488930gmail_msg" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">That&#39;s exactly what I&#39;m suggesting, the class declaration could work similarly to a closure.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt; On Dec 22, 2016, at 4:15 PM, Michael Ilseman &lt;<a href="mailto:milseman@apple.com" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">milseman@apple.com</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt; Are you asking for a class declaration to implicitly capture and extend the lifetime of local variables? That seems like something that’s better done explicitly. Perhaps it’s better to think about how to reduce the boiler plate code, e.g. better default initializers.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt; (this is of course, additive and beyond the current scope of Swift 4 phase 1 planning)<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; On Dec 22, 2016, at 2:39 PM, Micah Hainline via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; Currently we allow declarations of a new class in local scope, but<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; nothing can be referenced from the outer scope. Thus this is illegal:<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; ```<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; func foo() {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  let widgetString: String = createWidgetString()<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  class SimpleProvider: WidgetStringProvider {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     func provideWidgetString() -&gt; String {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;        return widgetString // Illegal, defined in outer scope<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  doThingsWithWidget(provider: WidgetStringProvider())<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; ```<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; I&#39;m trying to feel out the edges of this decision, and figure out why<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; exactly this isn&#39;t allowed now, and how we might want to relax this in<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; the future if possible. While not a common construct, it is a useful<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; one.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; Obviously there are ways around it, very simple to create an init and<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; a private let and do something like this:<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; ```<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; func foo() {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  let widgetString: String = createWidgetString()<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  class SimpleProvider: WidgetStringProvider {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     private let widgetString: String<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     init(widgetString: String) {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;        self.widgetString = widgetString<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     func provideWidgetString() -&gt; String {<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;        return widgetString // now legal, references<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; SimpleProvider.widgetString<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;     }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;  doThingsWithWidget(provider: WidgetStringProvider(<wbr>widgetString:<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; widgetString))<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; }<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; ```<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; That&#39;s boilerplate I don&#39;t want to write though, as it somewhat<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; detracts from the readability of the structure. I&#39;m not super<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; interested in defending the concept of local class definitions itself,<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; it&#39;s already allowed in the language, I&#39;m just interested in the<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; syntax limitation and where that line might be able to be redrawn.<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; ______________________________<wbr>_________________<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; swift-evolution mailing list<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; <a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">&gt;<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">______________________________<wbr>_________________<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">swift-evolution mailing list<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"></blockquote></div><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">______________________________<wbr>_________________<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg">swift-evolution mailing list<br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><a href="mailto:swift-evolution@swift.org" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">swift-evolution@swift.org</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" class="gmail-m_-5062206332442488930gmail_msg" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"></blockquote></div></div><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"></blockquote></div><br class="gmail-m_-5062206332442488930gmail_msg"><br class="gmail-m_-5062206332442488930gmail_msg"></blockquote></div></div>
</blockquote></div></div>