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 Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.
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.