<div dir="ltr">Yep, that’s what I meant. I should probably go back and re-write the proposal if it’s not clear.<div><br></div><div>BTW, when does the window for proposals close? Is this in the scope for Swift 3?<br><div><br></div><div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jun 28, 2016 at 9:54 PM David Waite &lt;<a href="mailto:david@alkaline-solutions.com" target="_blank">david@alkaline-solutions.com</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"><div><blockquote type="cite"><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div>Hi Saagar,</div><div><br></div><div>If I understand your proposal correctly, you are suggesting that we remove T! and just force people to use T? or T.  This is a commonly rejected proposal (though not on the list yet) that frequently comes up.  The problem with your proposal is that you don’t provide any solutions to the problems that T! is currently solving: that of two-phase initialization and importing of APIs that have not been nullability audited.  It isn’t pragmatic to handle these cases as T?</div><div><br></div><div>-Chris</div></div></div></blockquote><div><br></div></div></div><div style="word-wrap:break-word"><div>Chris,</div><div><br></div><div>I believe he only is speaking to removing the ability to use IUOs as function parameters, not as properties (for 2-phase init) or return values (for unaudited API). The question would be what the impact would be of unaudited API being imported as accepting an explicit optional rather than IUO.</div><div><br></div><div>-DW</div></div><div style="word-wrap:break-word"><div><br><blockquote type="cite"><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br><blockquote type="cite"><div><div dir="ltr"><h1>Remove implicitly unwrapped optionals as function parameters</h1><ul><li>Proposal:<span> </span><a>SE-NNNN</a></li><li>Author:<span> </span><a href="https://github.com/swiftdev" target="_blank">Swift Developer</a></li><li>Status:<span> </span><strong>Awaiting review</strong></li><li>Review manager: TBD</li></ul><h2>Introduction</h2><p>Swift, in contrast with Objective-C, makes a distinction between values that may be<span> </span><code>nil</code><span> </span>and values that can never be<span> </span><code>nil</code><span> </span>through its use of Optionals. Due to the fact that Objective-C does not make this distinction, Objective-C functions that do not use the<span> </span><a href="https://developer.apple.com/swift/blog/?id=25" target="_blank">Nullability</a><span> </span>annotations are imported with parameters of the implicitly unwrapped optional type. Unfortunately, this allows users to write their own Swift code that looks like this:</p><pre><code>func foo(bar: Int!) {
    //…
}
</code></pre><p>Due to the confusion this may cause, we would like to propose the<span> </span><strong>removal of implicitly unwrapped optionals as function parameters</strong>. Discussion on this topic may be found<span> </span><a href="http://article.gmane.org/gmane.comp.lang.swift.evolution/21730/" target="_blank">here</a>.</p><h2>Motivation</h2><p>Implicitly unwrapped optionals are currently allowed in function declarations. Consider the following function:</p><pre><code>func triple(forceUnwrapping aNumber: Int) -&gt; Int {
    return aNumber * 3
}

let possiblyNil = Int(&quot;foo&quot;)
triple(forceUnwrapping: possiblyNil)
</code></pre><p><code>possiblyNil</code><span> </span>is an<span> </span><code>Int?</code>; thus, this example will not compile due to<span> </span><code>triple(forceUnwrapping:)</code><span> </span>expecting an<span> </span><code>Int</code>. It is easy to imagine a Swift beginner writing code that looks like this to &quot;fix&quot; the problem:</p><pre><code>func triple(forceUnwrapping aNumber: Int!) -&gt; Int {
    return aNumber * 3
}

let possiblyNil = Int(&quot;foo&quot;)
triple(forceUnwrapping: possiblyNil)
</code></pre><p>While this version compiles, it crashes due to the force unwrapping of a<span> </span><code>nil</code><span> </span>value. Unfortunately, the compiler &quot;hides&quot; this fact by making it seem like it&#39;s acceptable to pass in<span> </span><code>nil</code>–it doesn&#39;t make the forced unwrapping<span> </span><strong>explicit</strong>.</p><h2>Proposed solution</h2><p>The safest solution, in this case, is to prevent the use of implicitly unrwapped optionals in function signatures. By forcing users to write</p><pre><code>func triple(forceUnwrapping aNumber: Int) -&gt; Int {
    return aNumber * 3
}
</code></pre><p>or</p><pre><code>func triple(forceUnwrapping aNumber: Int?) -&gt; Int {
    return aNumber * 3
}
</code></pre><p>the compiler will complain, reminding users that they should probably attempt to safely unwrap the optional before using it.</p><h2>Detailed design</h2><p>The proposal will prevent the use of implicitly unwrapped optionals in function signatures for both Swift code as well as imported Objective-C code. As non-annotated Objective-C functions are currently imported as implicitly unwrapped, they will be converted to optionals as a preliminary step. Non-audited frameworks can be audited in the future so that they can be tagged with<span> </span><code>_Nonnull</code><span> </span>if necessary.</p><h2>Impact on existing code</h2><p>This is a proposal is a source breaking change, but it should be easily mitigated using a migrator. Existing functions with implicitly unwrapped optionals can be changed to optional; users can easily shadow variables with a<span> </span><code>guard</code><span> </span>or change their function to non-optional.</p><h2>Alternatives considered</h2><h3>Importing Objective-C functions as-is, but disallowing implictly unwrapped optionals in Swift code</h3><p>This reduces the burden on existing frameworks and adding Nullability annotations, but creates a sort of disconnect between Objective-C and Swift in that it prevents Swift developers from writing functions with implicitly unwrapped optionals.</p><h3>Doing nothing</h3><p>Obviously, this has the benefit of keeping the current behavior and not requiring a migrator. However, I believe that the unsafe behavior that this encourages is not worth keeping.</p><br><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 27, 2016 at 1:35 PM Dennis Lysenko &lt;<a href="mailto:dennis.s.lysenko@gmail.com" target="_blank">dennis.s.lysenko@gmail.com</a>&gt; wrote:<br></div><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 dir="ltr">+1. This is sort of how Kotlin does it. In Kotlin, IUOs are strictly a carryover from Java. They show up in method signatures from non-nullable-annotated Java, but you can&#39;t define a new method that takes e.g. an Int!.<div><br></div><div>The limited scope of this proposal is ideal in my opinion since we see areas where IUOs are clearly useful (ViewControllers for instance) but defining new functions that take implicitly unwrapped optionals makes no sense. If you need to pass a IUO at the call site, you can define the function taking a non-optional value and pass the IUO to that. There is no use case I can think of for having it in method/function signatures.</div><div><br></div><div>RE: language inconsistencies, there is no such issue in practice in Kotlin where there is also inconsistency in the same vein. I see it simply as a compromise that achieves the goal of keeping a useful feature but discouraging its overuse by forbidding its use in places where its use could confuse and snowball down the line into teaching developers worse code quality.</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 27, 2016 at 12:04 PM Charlie Monroe via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br></div><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"><div>Ok, I see - though I find myself using occasionally IUOs in Swift as well - e.g. when you can&#39;t use the default values because they depend on self, etc.</div><div><br></div>Eliminating it just from method signatures IMHO brings an incosistency into the language. Why would you eliminate it only from method signatures - this proposal mentioned importing ObjC API in the beginning - why not then mark those properties all as optional as well? IUOs are scheduled to be removed completely once the language reaches a point where it can handle most scenarios otherwise...<div><br></div><div>Try to imagine some APIs brought to Swift with default being nullable:</div><div><br></div><div>/// Imported from </div><div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo;color:rgb(112,61,170)"><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">class</span><span><span> </span>NSOrderedSet :<span> </span></span><span>NSObject</span><span>,<span> </span></span><span>NSCopying</span><span>,<span> </span></span><span>NSMutableCopying</span><span>,<span> </span></span><span>NSSecureCoding</span><span>,<span> </span></span><span>NSFastEnumeration</span><span><span> </span>{</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo;min-height:10px"><span>    </span><br></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>   <span> </span></span><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">var</span><span><span> </span>count:<span> </span></span><span style="color:rgb(112,61,170)">Int</span><span><span> </span>{ get }</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>   <span> </span></span><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">func</span><span><span> </span>objectAtIndex(idx:<span> </span></span><span style="color:rgb(112,61,170)">Int</span><span>) -&gt;<span> </span></span><span style="color:rgb(112,61,170)">AnyObject?</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>   <span> </span></span><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">func</span><span><span> </span>indexOfObject(object:<span> </span></span><span style="color:rgb(112,61,170)">AnyObject?</span><span>) -&gt;<span> </span></span><span style="color:rgb(112,61,170)">Int</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo;color:rgb(187,44,162)"><span>   <span> </span></span><span>public</span><span><span> </span></span><span>init</span><span>()</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>   <span> </span></span><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">init</span><span>(objects:<span> </span></span><span style="color:rgb(112,61,170)">UnsafePointer</span><span>&lt;</span><span style="color:rgb(112,61,170)">AnyObject</span><span>?&gt;, count cnt:<span> </span></span><span style="color:rgb(112,61,170)">Int</span><span>)</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>   <span> </span></span><span style="color:rgb(187,44,162)">public</span><span><span> </span></span><span style="color:rgb(187,44,162)">init</span><span>?(coder aDecoder:<span> </span></span><span style="color:rgb(112,61,170)">NSCoder?</span><span>)</span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span>}</span></div></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><span><br></span></div><div style="margin:0px;font-size:9px;line-height:normal;font-family:Menlo"><div style="font-family:Helvetica;font-size:10px">This doesn&#39;t make much sense - mostly objectAtIndex(_:). </div></div></div><div style="word-wrap:break-word"><div><div><div><br><div><blockquote type="cite"><div>On Jun 27, 2016, at 8:35 PM, Saagar Jha &lt;<a href="mailto:saagarjha28@gmail.com" target="_blank">saagarjha28@gmail.com</a>&gt; wrote:</div><br><div><div dir="ltr">I think you’re mistaking the scope of the proposal. It’s simply removing IUOs in<span> </span><i>function signatures</i>, not throughout the language.</div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 27, 2016 at 11:31 AM Charlie Monroe via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br></div><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">There are many useful cases for IUO in Swift - mostly when you have variables that cannot be calculated at the point of calling super.init(), but are guaranteed to be filled during initialization - i.e. during the lifetime of the object, the value is nonnil, but may be nil for a short period of time.<br><br>Or @IBOutlets. Making all @IBOutlets optionals would make the code either riddled with ! or shadowed locally re-declared instance members.<br><br><br>&gt; On Jun 27, 2016, at 8:12 PM, Jean-Daniel Dupas &lt;<a href="mailto:mailing@xenonium.com" target="_blank">mailing@xenonium.com</a>&gt; wrote:<br>&gt;<br>&gt; Maybe we can prohibit it in Swift function declaration, and allow it only when importing native code.<br>&gt;<br>&gt; As David, I don’t see any compelling reason to allow such construct in Swift.<br>&gt;<br>&gt;&gt; Le 27 juin 2016 à 10:39, Charlie Monroe via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; a écrit :<br>&gt;&gt;<br>&gt;&gt; When you import ObjC code that has no nullability annotation, IUO make sense since:<br>&gt;&gt;<br>&gt;&gt; - they can be checked against nil<br>&gt;&gt; - typically, most values in APIs are nonnull (looking at Foundation, for example, which is why Apple has the NS_ASSUME_NONNULL_BEGIN to mark entire regions as nonnull, yet there is no NS_ASSUME_NULL_BEGIN)<br>&gt;&gt;<br>&gt;&gt; Importing them as optionals would make it really hard to work with the code - whenever you get a value, it&#39;s an optional, even in cases where it makes no sense and adding ! to unwrap the optional is not a great solution. And the other solution is to use guards everywhere.<br>&gt;&gt;<br>&gt;&gt; IMHO the IUO is a nice (temporary) solution for using un-annotated code until it is. But the &quot;pressure&quot; should be applied on the ObjC code.<br>&gt;&gt;<br>&gt;&gt;&gt; On Jun 27, 2016, at 10:03 AM, David Rönnqvist &lt;<a href="mailto:david.ronnqvist@gmail.com" target="_blank">david.ronnqvist@gmail.com</a>&gt; wrote:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; I don’t know about the chances of getting approved, but I think this is something worth discussing.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; It might just be my ignorance, but I can’t think of a good reason why a function argument would be force unwrapped. Either it’s non-null and the caller is expected to unwrap it or it’s nullable and the method is expected to handle the nil value. So I’m positive to that part of the proposal.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; As to what we should do with the generated interfaces of Objective-C code that hasn’t been annotated with nullability, I think that needs input from more people to find the preferred solution.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Once that’s been discussed some more, I’d be willing to write up a formal proposal if you don’t feel like it (assuming the discussion leads somewhere).<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; - David<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; On 27 Jun 2016, at 06:28, Charlie Monroe via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; See<span> </span><a href="https://github.com/apple/swift-evolution/blob/master/process.md" rel="noreferrer" target="_blank">https://github.com/apple/swift-evolution/blob/master/process.md</a><span> </span>- you would need to make an official proposal and submit it as pull request. But given the reaction here, it&#39;s unlikely to get approved.<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Also, the ObjC code without nullability is getting fairly rare - all Apple&#39;s frameworks are with nullability information (as far as I&#39;ve checked) in macOS 10.12, iOS 10. Third party libraries should be updated to use nullability (and most libraries that are maintained already do).<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; On Jun 25, 2016, at 5:13 PM, Spromicky via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; So, its proposal is dead, or what we must to do to force it to swift-evolution repo on GitHub?<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Hello, everyone!<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; I wanna propose to you to remove force unwrapping in fuction signature for swift code. That no sense in clear swift code. If we wanna use some optional value as function param, that is not optional, we must unwrap it before function call.<br>&gt;&gt;&gt;&gt;&gt;&gt; People who new in swift look at how they old Obj-C code (without nullability modifiers) translate in to swift:<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Obj-C:<br>&gt;&gt;&gt;&gt;&gt;&gt; - (void)foo:(NSInteger)bar {<br>&gt;&gt;&gt;&gt;&gt;&gt; //...<br>&gt;&gt;&gt;&gt;&gt;&gt; }<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; Swift transaliton:<br>&gt;&gt;&gt;&gt;&gt;&gt; func foo(bar: Int!) {<br>&gt;&gt;&gt;&gt;&gt;&gt; //...<br>&gt;&gt;&gt;&gt;&gt;&gt; }<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; And think that force unwrapping in signature is good practice. And start write functions in clear swift code like this:<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; func newFoo(bar: Int!) {<br>&gt;&gt;&gt;&gt;&gt;&gt; //...<br>&gt;&gt;&gt;&gt;&gt;&gt; }<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; and use it like this:<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; let bar: Int? = 1<br>&gt;&gt;&gt;&gt;&gt;&gt; newFoo(bar)<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; And it really work, and they does not think that this can crash in case if `bar` will be `nil`.<br>&gt;&gt;&gt;&gt;&gt;&gt; But in clear swift we wanna work with parametrs in function that clearly or optional, or not.<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; func newFoo(bar: Int) {<br>&gt;&gt;&gt;&gt;&gt;&gt; //...<br>&gt;&gt;&gt;&gt;&gt;&gt; }<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; or<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; func newFoo(bar: Int?) {<br>&gt;&gt;&gt;&gt;&gt;&gt; //...<br>&gt;&gt;&gt;&gt;&gt;&gt; }<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; When we write a new function we know what we need in this case and use optional params or not.<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt; So my proposal is remove force unwrapping(`!`) from function signatures, cause it have no sense, and that confuse new users.<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; _______________________________________________<br>&gt;&gt;&gt;&gt;&gt; swift-evolution mailing list<br>&gt;&gt;&gt;&gt;&gt;<span> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>&gt;&gt;&gt;&gt;&gt;<span> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; _______________________________________________<br>&gt;&gt;&gt;&gt; swift-evolution mailing list<br>&gt;&gt;&gt;&gt;<span> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>&gt;&gt;&gt;&gt;<span> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>&gt;&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; _______________________________________________<br>&gt;&gt; swift-evolution mailing list<br>&gt;&gt;<span> </span><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>&gt;&gt;<span> </span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>&gt;<br><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><div dir="ltr">--<span> </span><br></div><div data-smartmail="gmail_signature"><div dir="ltr">-Saagar Jha</div></div></div></blockquote></div><br></div></div></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></blockquote></div></div><div dir="ltr">--<span> </span><br></div><div data-smartmail="gmail_signature"><div dir="ltr">-Saagar Jha</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" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div></blockquote></div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">_______________________________________________</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">swift-evolution mailing list</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="mailto:swift-evolution@swift.org" style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">swift-evolution@swift.org</a><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" style="font-family:Helvetica;font-size:12px;font-style:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a></div></blockquote></div></div></blockquote></div></div></div></div><div dir="ltr">-- <br></div><div data-smartmail="gmail_signature"><div dir="ltr">-Saagar Jha</div></div>