[swift-evolution] [Discussion]: Deprecate !-Unwrapping of Optionals

Kenny Leung kenny_leung at pobox.com
Mon Feb 29 13:38:41 CST 2016


I strongly agree with this. The main goal of optionals is to help eliminate null pointer exceptions, yet there is a common mechanism to put them back into your code. This doesn’t make much sense to me.

Not having forced unwrapping makes you take care of the cases where you might run into null, and will push the language in a direction where dealing with the null is just as easy as risking a null pointer exception is today.

-Kenny


> On Feb 28, 2016, at 11:53 AM, Developer via swift-evolution <swift-evolution at swift.org> wrote:
> 
> Optional values pervade Swift code and so there is a significant part of the language dedicated to manipulating them and using them safely.  An optional value may be conditionally let-bound, guarded, pattern-matched on, given a default value with ??, or used with higher-order functions like map and flatMap without having to interact with partiality.  A corner case, however, remains in the form of the postfix-! force-unwrap operator.  At the term level, there is little reason to unwrap given the syntactic constructs above, and indeed code that does becomes brittle and, by its very nature, open to the dreaded "unexpectedly found nil while unwrapping an optional value" error (our very own NullPointerException).  In addition, bang is incredibly hard to spot in code bases that use it because it blends in with Boolean negation (which, in itself, is notoriously hard to spot in other C-like-languages), harming readability and making code review more difficult.  Finally, if the authors of a piece of code have such confidence in the existence of a value that they feel it safe to use force unwrapping, they should simply use a non-optional value and cut out a level of indirection and avoid the dangers of bang in the first place. 
> 
> Because of the above, I'd like to start a discussion about its deprecation and eventual removal in favor of either an unsafeUnwrap function or other extra-syntactic constructs.  I don't intend for force-unwrapping as a concept to go away, as there will always be corner cases where it is necessary, but I don't believe it deserves to be so easy to do in a language that holds safety as a core tenant.
> 
> Thanks all,
> 
> ~Robert Widmann
> _______________________________________________
> swift-evolution mailing list
> swift-evolution at swift.org
> https://lists.swift.org/mailman/listinfo/swift-evolution



More information about the swift-evolution mailing list