Swift version: 5.4
The Never
return type is a special one in Swift, and tells the compiler that execution will never return when this function is called. It’s used by Swift’s fatalError()
and preconditionFailure()
functions, both of which cause your app to crash if they are called.
The Never
return type is useful because it lets Swift waive other requirements. For example, if you’re in a function that must return a value, calling a Never
function means you don’t need to return anything – Swift knows you can’t return a value any more.
SPONSORED Spend less time managing in-app purchase infrastructure so you can focus on building your app. RevenueCat gives everything you need to easily implement, manage, and analyze in-app purchases and subscriptions without managing servers or writing backend code.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0 – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.