Swift version: 5.10
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 Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
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.