Beginner
Swift
Q31 / 100
What is a typealias in Swift?
Correct! Well done.
Incorrect.
The correct answer is B) An alternative name for an existing type
B
Correct Answer
An alternative name for an existing type
Explanation
typealias Completion = (Result<Data, Error>) -> Void creates a readable alias for a complex closure type.
Progress
31/100