[swift-evolution] Auto Unwrapping Of Optionals

Adrian Zubarev adrian.zubarev at devandartist.com
Fri Apr 29 14:21:55 CDT 2016


+1 But your example is too good to be true. :)  

What would happen to this code:  

class A {  

 var value: Type? = nil  

 func reset() { self.value = nil }  

 func test() {  

 self.value = self.value ?? Type()  

 self.reset()  

 self.value.doSomething()  

 // can the compiler be sure that our value wasn't reset somewhere from a different scope ?  
 }
}

I'm curious what will happen here. Can someone clarify on that?  

--  
Adrian Zubarev  

Am 29. April 2016 um 16:37:37, Tod Cunningham via swift-evolution (swift-evolution at swift.org(mailto:swift-evolution at swift.org)) schrieb:

>  
> I'm new to the swift evolution community, but I wanted to toss an idea out there to get some feedback on it. So here it goes...
>  
> Currently, if you assign a non-nil value to an optional and then want to access that optional later, in the same context, you need to manually unwrap the value. This is usually done either by using "!" or by using something like "if let" or guard.
>  
> What would it be like if the compiler could auto unwrap, in cases where in knows the optional will have some value? This would make the code "clean" and still be safe.
>  
> This concept of Auto Unwrapping of Optionals is similar to Implicitly Unwrapped Optionals, but is only applied when the compiler knows it is safe to do so.
>  
> Take the following example:
>  
> class Test {
> var today: NSDate? = nil
> func test() {
> today = today ?? NSDate()
> print("Today is \(today)") // Would be printed as an optional
> let timeInterval: NSTimeInterval = today!.timeIntervalSinceNow // Requires ! or (if let) to unwrap
> // ... do stuff with timeInterval ...
> }
> }
>  
> With the above example, the compiler could known that today has a value after it's set in the test method. So why couldn't the compiler auto unwrap it when accessed? This would mean manual unwrapping would be unnecessary:
>  
> class Test {
> var today: NSDate? = nil
> func test() {
> today = today ?? NSDate()
> print("Today is \(today)") // Would be printed as a value (not an optional)
> let timeInterval: NSTimeInterval = today.timeIntervalSinceNow // No ! required (auto unwrapped)
> // ... do stuff with timeInterval ...
> }
> }
>  
> If the value later gets set to an optional value, then it will no longer be auto unwrapable :
>  
> class Test {
> var today: NSDate? = nil
>  
> func optionalDay() -> NSDate? {
> return NSDate()
> }
>  
> func test() {
> today = today ?? NSDate()
> print("Today is \(today)") // Would be printed as a value (not an optional)
> let timeInterval: NSTimeInterval = today.timeIntervalSinceNow // No ! required (auto unwrapped)
> let timeInterval2: NSTimeInterval = today!.timeIntervalSinceNow // Explicit unwrapping would still be allowed
>  
> // If today is assigned an optional value, we can no longer auto unwrap it
> today = optionalDay()
> print("Today is \(today)") // Would be printed as an optional
> let timeInterval3: NSTimeInterval = today!.timeIntervalSinceNow // manual unwrapping would be required
> }
> }
>  
> Note in the above example, explicit unwrapping would still be allow. The variable is still an optional. This allows for existing code to remain unchanged.
>  
> This change would encourage less use of forced unwrapping "!", generally require the developer to write less code, and would maintain code safety. On the down side, it is performing some compiler “magic”. It would be yet another thing to explain when trying to introduce people to swift and especially optionals.
>  
> What do you all think, would something like this be worth pursuing, what other pluses or minus would this introduce, has something like this already been discussed?
>  
> Thanks,
> Tod Cunningham
>  
> _______________________________________________
> swift-evolution mailing list
> swift-evolution at swift.org
> https://lists.swift.org/mailman/listinfo/swift-evolution
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20160429/c69ff754/attachment.html>


More information about the swift-evolution mailing list