Swift version: 5.6
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.
SAVE 50% To celebrate Black Friday, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
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.