<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I see three solutions which are not exclusive.<div class=""><br class=""></div><div class="">var suffix = "suffix"</div><div class="">prepareSomething {</div><div class="">&nbsp; &nbsp; name = self.name + suffix</div><div class="">}</div><div class=""><br class=""></div><div class=""><div class="">var name = "suffix"</div><div class="">prepareSomething { [suffix = name]</div><div class="">&nbsp; &nbsp; name = self.name + suffix</div><div class="">}</div><div class=""><br class=""></div><div class=""><div class="">var name = "suffix"</div><div class="">prepareSomething {</div><div class="">&nbsp; &nbsp; it.name = self.name + name</div><div class="">}</div></div><div class=""><br class=""></div><div class="">or a fourth one where you'd explicitly name `it`, but I’m not sure of the syntax.</div><div class=""><br class=""></div><div class="">
<div class="">Pierre</div>

</div>
<br class=""><div><blockquote type="cite" class=""><div class="">Le 11 déc. 2015 à 18:10, ilya &lt;<a href="mailto:ilya.nikokoshev@gmail.com" class="">ilya.nikokoshev@gmail.com</a>&gt; a écrit :</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">I'm still not sure I understand the capture semantics in this proposal. Let's say we want to do stuff inside NSOperation:<div class=""><br class=""></div><div class="">class C:NSOperation {</div><div class=""><br class=""></div><div class="">&nbsp; func doStuff() {</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; // We want to set the name of new operation to be equal the old name + some suffix that is currently bound to 'name'.<br class=""></div><div class="">&nbsp; &nbsp; var name = "suffix"</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; // How we do it right now, assume prepareSomething creates a new NSOperation that we want to configure.</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; prepareSomething { operation in</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://operation.name/" class="">operation.name</a> = <a href="http://self.name/" class="">self.name</a> + name</div><div class="">&nbsp; &nbsp; }</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp;// How do we do that in the proposal?</div><div class=""><br class=""></div><div class=""><div class="">&nbsp; &nbsp; prepareSomething {</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; name = ?</div><div class="">&nbsp; &nbsp; }</div><div class="">}</div></div><div class=""><br class=""></div></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 3:46 PM, Pierre Monod-Broca via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class="">To answer James:</div><div class="">Binding is probably a better word than delegation :), it seems more consistent.<div class=""><br class=""></div><div class="">I’m ok with the javascript syntax of binding, but the curried-like one has the advantage of being consistent with methods eg:</div><div class=""><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(195,89,0)" class=""><span style="color:rgb(53,86,138)" class="">let</span><span style="" class="">&nbsp;f =&nbsp;</span>BarImplementation<span style="" class="">.</span><span style="color:rgb(88,126,168)" class="">doStuff // BarImplementation -&gt; () -&gt; ()</span></div></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo" class="">f(bar)()</div></div><div class=""><br class=""></div><div class="">To answer Marc:</div><div class="">The bound value is not captured from the closure definition site, it’s explicitly bound, usually just before calling the closure. I think a strong reference is enough, like when calling a method. Besides the binding wouldn’t mutate the closure, but create a new one, usually short-lived.</div><div class=""><br class=""></div>I think `self` should keep it’s value, and we should find another word for the bound value, especially to avoid `self` being shadowed. I would suggest `this` if it wasn’t heavily used in other language to mean self.<div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div class="">
<div class="">Pierre</div>

</div><div class=""><div class="h5">
<br class=""><div class=""><blockquote type="cite" class=""><div class="">Le 11 déc. 2015 à 13:36, Marc Knaup &lt;<a href="mailto:marc@knaup.koeln" target="_blank" class="">marc@knaup.koeln</a>&gt; a écrit :</div><br class=""><div class=""><div dir="ltr" class="">How would capture semantics work?<div class=""><br class=""></div><div class="">I think this could easily lead to reference cycles as the parameter is captured strongly without any hint at the call-site.</div><div class="">The developer should be warned and have a way to state the capture semantics explicitly through the capture list.</div><div class=""><br class=""></div><div class="">If the&nbsp;delegate&nbsp;parameter "Bar" becomes "self" in the closure then using "self" everywhere should be required just as in normal closures. "@noescape" would avoid this but the closure reference must be stored then.</div><div class="">If the delegate parameter "Bar" really becomes "self" there's also the problem that the original "self" variable suddenly becomes hidden.</div><div class=""><br class=""></div></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 1:15 PM, James Campbell via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class=""><br class=""></div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 12:14 PM, James Campbell <span dir="ltr" class="">&lt;<a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="">So I don't like this way of declaring it as it is not very clear what it is doing &nbsp;but I actually prefer the javascript way of binding, so in your example the code would be this:<div class=""><br class=""></div><div class=""><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class=""><span style="color:rgb(53,86,138)" class="">func</span>&nbsp;prepareSomething(setup:() -&gt; ()) {</font></div><span class=""><span class=""><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class=""><font color="#cf8724" class="">&nbsp; &nbsp;&nbsp;</font><span style="color:rgb(53,86,138)" class="">let</span><font color="#cf8724" class="">&nbsp;</font>bar<font color="#cf8724" class="">&nbsp;=&nbsp;</font><span style="color:rgb(195,89,0)" class="">BarImplementation</span>()</font></div><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">&nbsp; &nbsp;&nbsp;<span style="color:rgb(207,135,36)" class="">// code before</span></font></div></span></span><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">&nbsp; &nbsp;&nbsp;setup().bind(bar)</font></div><div style="font-size:12.8px;margin:0px;color:rgb(207,135,36)" class=""><font face="Menlo" style="font-size:11px" class=""><span class="">&nbsp; &nbsp;&nbsp;</span>// code after</font></div><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">}</font></div></div><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class=""><br class=""></font></div><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">The bind method lets Swift know it should bind this to `bar`, so now this is the same as writing `bar`. So in your example:</font></div><div style="font-size:12.8px;margin:0px" class=""><font face="Menlo" style="font-size:11px" class=""><br class=""></font></div><div style="font-size:12.8px;margin:0px" class=""><div style="font-size:12.8px" class="">without delegation&nbsp;</div><div style="font-size:12.8px" class=""><span class=""><div style="margin:0px;font-size:11px;font-family:Menlo;color:rgb(88,126,168)" class="">prepareSomething<span class="">&nbsp;{ delegate&nbsp;</span><span style="color:rgb(53,86,138)" class="">in</span></div><div style="margin:0px;font-size:11px;font-family:Menlo" class="">&nbsp; &nbsp; delegate.<span style="color:rgb(88,126,168)" class="">someConfig</span>&nbsp;=&nbsp;<span style="color:rgb(232,35,0)" class="">"Hello World"</span></div><div style="margin:0px;font-size:11px;font-family:Menlo" class="">}</div><div class=""><br class=""></div></span><div class="">with binding</div><span class=""><div class=""><div style="margin:0px;font-size:11px;font-family:Menlo;color:rgb(88,126,168)" class="">prepareSomething<span class="">&nbsp;{</span></div><div style="margin:0px;font-size:11px;font-family:Menlo" class="">&nbsp; &nbsp;&nbsp;<span style="color:rgb(88,126,168)" class="">someConfig</span>&nbsp;=&nbsp;<span style="color:rgb(232,35,0)" class="">"Hello World"</span></div><div style="margin:0px;font-size:11px;font-family:Menlo" class="">}</div></div><div style="margin:0px;font-size:11px;font-family:Menlo" class=""><br class=""></div></span><div style="margin:0px;font-size:11px;font-family:Menlo" class="">These would work the same :)&nbsp;</div></div></div></div><div class=""><div class=""><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 11:49 AM, Pierre Monod-Broca <span dir="ltr" class="">&lt;<a href="mailto:pierremonodbroca@gmail.com" target="_blank" class="">pierremonodbroca@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class="">without delegation&nbsp;</div><div class=""><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(88,126,168)" class="">prepareSomething<span class=""> { delegate </span><span style="color:#35568a" class="">in</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo" class="">&nbsp; &nbsp; delegate.<span style="color:#587ea8" class="">someConfig</span> = <span style="color:#e82300" class="">"Hello World"</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo" class="">}</div><div class=""><br class=""></div><div class="">with delegation</div><div class=""><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(88,126,168)" class="">prepareSomething<span class=""> {</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo" class="">&nbsp; &nbsp; <span style="color:#587ea8" class="">someConfig</span> = <span style="color:#e82300" class="">"Hello World"</span></div><div style="margin:0px;font-size:11px;line-height:normal;font-family:Menlo" class="">}</div></div><div class=""><br class=""></div><div class="">The exemple is not very compelling, but in a manifest file it would reduce boiler plate.</div><span class=""><font color="#888888" class=""><div class=""><br class=""></div><div class="">
<div class="">Pierre</div>

</div></font></span><div class=""><div class="">
<br class=""><div class=""><blockquote type="cite" class=""><div class="">Le 11 déc. 2015 à 12:29, James Campbell &lt;<a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a>&gt; a écrit :</div><br class=""><div class=""><div dir="ltr" class="">Whats the advantage over this ?<div class=""><br class=""></div><div class=""><blockquote type="cite" style="color:rgb(80,0,80);font-size:12.8px" class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><font face="Menlo" style="font-size:11px" class=""><span style="color:rgb(53,86,138)" class="">protocol</span>&nbsp;Bar {</font></div><div class=""><div style="margin:0px" class=""><span class=""><div style="margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">&nbsp; &nbsp;&nbsp;<span style="color:rgb(53,86,138)" class="">var</span>&nbsp;someConfig:&nbsp;<span style="color:rgb(195,89,0)" class="">String</span>&nbsp;{&nbsp;<font color="#35568a" class="">get set</font>&nbsp;}</font></div><div style="margin:0px" class=""><font face="Menlo" style="font-size:11px" class="">}</font></div><div style="margin:0px;min-height:13px" class=""><font face="Menlo" style="font-size:11px" class=""><br class=""></font></div></span><div style="margin:0px" class=""><font face="Menlo" style="font-size:11px" class=""><span style="color:rgb(53,86,138)" class="">func</span>&nbsp;prepareSomething(setup:&nbsp;(delegate:</font><span style="color:rgb(195,89,0);font-size:11px;font-family:Menlo" class="">&nbsp;Bar</span><span style="font-size:11px;font-family:Menlo;color:rgb(34,34,34)" class="">) -&gt; ()) {</span></div></div></div></div></blockquote></div></div></blockquote></div></div><div class=""><div class=""><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 11:27 AM, Pierre Monod-Broca <span dir="ltr" class="">&lt;<a href="mailto:pierremonodbroca@gmail.com" target="_blank" class="">pierremonodbroca@gmail.com</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><br class=""></div><div class=""><div class=""><span class=""><blockquote type="cite" class=""><div class="">Le 11 déc. 2015 à 11:54, James Campbell &lt;<a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a>&gt; a écrit :</div><br class=""><div class=""><div dir="ltr" class="">Could you explain a little more its a bit confusing ?</div><div class="gmail_extra"><br class=""><div class="gmail_quote">On Fri, Dec 11, 2015 at 10:32 AM, Pierre Monod-Broca via swift-evolution <span dir="ltr" class="">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a>&gt;</span> wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class="">A groovy closure can have a delegate which replaces `this` as the default receiver. The issue in groovy is that it is not compatible with static compilation, and there is no way to know from the code what is the type of the delegate.<div class=""><br class=""></div><div class=""><div class="">It works great for DSL. It would work great the Swift Package Manager manifest, among other things.</div></div><div class=""><br class=""></div><div class="">It could look like this in swift<br class=""><div class=""><br class=""></div><div class=""><font style="font-size:11px" face="Menlo" class=""><span style="color:rgb(53,86,138)" class="">protocol</span> Bar {</font></div><div class=""><div style="margin:0px;line-height:normal" class=""><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">&nbsp; &nbsp; <span style="color:rgb(53,86,138)" class="">var</span> someConfig:&nbsp;<span style="color:rgb(195,89,0)" class="">String</span>&nbsp;{&nbsp;<font color="#35568a" class="">get set</font>&nbsp;}</font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">}</font></div><div style="margin:0px;line-height:normal;min-height:13px" class=""><font style="font-size:11px" face="Menlo" class=""><br class=""></font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class=""><span style="color:rgb(53,86,138)" class="">func</span> prepareSomething(setup:&nbsp;<span style="color:rgb(53,86,138)" class="">@delegate</span>&nbsp;<span style="color:rgb(195,89,0)" class="">Bar</span> -&gt; () -&gt; ()) {</font></div></div></div></div></div></blockquote></div></div></div></blockquote></span>Here we define a function `prepareSomething(_:)` which receives one parameter: a closure that takes a delegate conforming to `Bar`, and otherwise take no parameter and returns nothing</div><div class=""><span class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><div class=""><div style="margin:0px;line-height:normal" class=""><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class=""><font color="#cf8724" class="">&nbsp; &nbsp;&nbsp;</font><span style="color:rgb(53,86,138)" class="">let</span><font color="#cf8724" class=""> </font>bar<font color="#cf8724" class=""> = </font><span style="color:rgb(195,89,0)" class="">BarImplementation</span>()</font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">&nbsp; &nbsp;&nbsp;<span style="color:rgb(207,135,36)" class="">// code before</span></font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">&nbsp; &nbsp;&nbsp;setup(bar)()</font></div></div></div></div></div></blockquote></div></div></div></blockquote></span>Here we pass a delegate to the closure, then call the closure</div><div class=""><span class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><div class=""><div style="margin:0px;line-height:normal" class=""><div style="margin:0px;line-height:normal;color:rgb(207,135,36)" class=""><font style="font-size:11px" face="Menlo" class=""><span class="">&nbsp; &nbsp;&nbsp;</span>// code after</font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">}</font></div><div style="margin:0px;line-height:normal;min-height:13px" class=""><font style="font-size:11px" face="Menlo" class=""><br class=""></font></div><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">prepareSomething { () -&gt; ()&nbsp;<span style="color:rgb(53,86,138)" class="">in</span></font></div></div></div></div></div></blockquote></div></div></div></blockquote></span>Here we call the function `prepareSomething(_:)` with a closure which we define a the same time</div><div class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><div class=""><div style="margin:0px;line-height:normal" class=""><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">&nbsp; &nbsp; someConfig =&nbsp;<span style="color:rgb(232,35,0)" class="">"Hello world"</span></font></div></div></div></div></div></blockquote></div></div></div></blockquote>Here `someConfig` is a property of the closure’s delegate</div><div class=""><span class=""><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><div class=""><div style="margin:0px;line-height:normal" class=""><div style="margin:0px;line-height:normal" class=""><font style="font-size:11px" face="Menlo" class="">}</font></div><div style="font-family:Menlo;font-size:11px" class=""><br class=""></div></div><div class=""><div class="">Where `someConfig` would refer to bar.</div><div class=""><br class=""></div></div></div></div></div></blockquote></div></div></div></blockquote><div class=""><br class=""></div></span>I’m not sure about the syntax, we could also declare the delegate that way, maybe :<div class=""><div style="margin:0px;font-size:11px;line-height:normal" class=""><font face="Menlo" class=""><span style="color:rgb(53,86,138)" class="">func</span>&nbsp;prepareSomething(doSomething:&nbsp;</font><span style="color:rgb(53,86,138);font-family:Menlo" class="">@delegate(</span><span style="color:rgb(195,89,0);font-family:Menlo" class="">Bar</span><span style="color:rgb(53,86,138);font-family:Menlo" class="">)</span><span style="font-family:Menlo" class="">&nbsp;() -&gt; ()) {</span></div><div style="margin:0px;font-size:11px;line-height:normal" class=""><span style="font-family:Menlo" class="">&nbsp; &nbsp;&nbsp;</span><span style="color:rgb(207,135,36);font-family:Menlo" class="">/**/</span></div><div style="margin:0px;font-size:11px;line-height:normal" class=""><span style="font-family:Menlo" class="">}</span></div></div><span class=""><div class=""><span style="font-family:Menlo" class=""><br class=""></span></div><blockquote type="cite" class=""><div class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><div class=""><div class=""><div class="">
<div class="">Pierre</div>

</div>

<br class=""></div></div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=xV0JY-2FdZMnUMvSFtZnLiBPRTDDOSQf3-2FpH33HYOlBxG0x8OMTNdemFXqF3foFYoqpGnhR8cy-2FlFL4xK8ijX2ylpZvq90E32A79TBFfiQYS5Pn-2Bo59HipCUsCsV7eMemKd8j14RCY6aiJ8QyHIDjLlmHedoUTG5IACcHSAEiGzeoFzcjBqHCbGp9X00IcqPqaDU-2FFTwIwYZpWABXnqMZQq7KoGvwXM01ndVU3G1gj2uw-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important" class="">
</div>
<br class="">_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
<br class=""></blockquote></div><br class=""><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class=""><span style="font-size:16px;line-height:19.2px" class=""></span><span style="font-size:12.8px" class="">&nbsp;Wizard</span><br class=""></div><div class=""><a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a></div><div class=""><a href="tel:%2B44%207523%20279%20698" value="+447523279698" target="_blank" class="">+44 7523 279 698</a></div></div></div></div></div></div>
</div>
</div></blockquote></span></div><br class=""></div><div class=""><br class=""></div></div></blockquote></div><br class=""><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class=""><span style="font-size:16px;line-height:19.2px" class=""></span><span style="font-size:12.8px" class="">&nbsp;Wizard</span><br class=""></div><div class=""><a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a></div><div class=""><a href="tel:%2B44%207523%20279%20698" value="+447523279698" target="_blank" class="">+44 7523 279 698</a></div></div></div></div></div></div>
</div>
</div></div></div></blockquote></div><br class=""></div></div></div></div></blockquote></div><div class=""><div class=""><br class=""><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class=""><span style="font-size:16px;line-height:19.2px" class=""></span><span style="font-size:12.8px" class="">&nbsp;Wizard</span><br class=""></div><div class=""><a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a></div><div class=""><a href="tel:%2B44%207523%20279%20698" value="+447523279698" target="_blank" class="">+44 7523 279 698</a></div></div></div></div></div></div>
</div></div></div>
</div></div></blockquote></div><div class=""><div class=""><br class=""><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class=""><span style="font-size:16px;line-height:19.2px" class=""></span><span style="font-size:12.8px" class="">&nbsp;Wizard</span><br class=""></div><div class=""><a href="mailto:james@supmenow.com" target="_blank" class="">james@supmenow.com</a></div><div class=""><a href="tel:%2B44%207523%20279%20698" value="+447523279698" target="_blank" class="">+44 7523 279 698</a></div></div></div></div></div></div>
</div></div></div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=6ZGE61OxINd5lLe2xYh9Ku-2BXbixWNr2nvfzp2IB1sZgWRsPrcN3q2mRgMRDye-2FPR-2FAfm-2BbM-2BAviUEDMpa-2BJOgJNHJhGdFedlvTGnSqTFT7dud7SMuLNBfcWxdZOTWxL4bhebaGbVO0ffZigCO4XVkUwxO30NEgj6cgk1nYD1yqiO4L6NdbdbTOVGByGUKznF4y9aeaNp0n6oN7xPQresh-2Fc27laLObvbdQUVxkXtbsY-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important" class="">
<br class="">_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
<br class=""></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></div></div></div>
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=1p9Jer2O6jVE9KWvo-2B9iUaEyN8slp4IizyiLwsfp54MwjxC9I3k-2BH7-2FuiXZk7cAm7VQAzUsMxS9CqOxZg1y9GhPNbchb1VM1QgMrxSrL51o-2B9hF248ReJGRhUnMYOygxHXPhLq-2Fl-2Fd4-2B1dQ9alpmlMZ4p1snKQMwFaEyC8IxQQKZKh7LWgflefMuuPNtzVfrxshwDaC4AUrnaZZsYxLV1QVnqZ4Zzu86D3NNV6x7338-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important" class="">
</div>
<br class="">_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
<br class=""></blockquote></div><br class=""></div>
</div></blockquote></div><br class=""></div></body></html>