Google News
logo
Swift - Interview Questions
What is Typealias in Swift Programming Language?
It allows you to provide a new name to the existing data type in the programming. After declaring the alias name to the existing type, we can use it throughout the programming. It will provide more readability to the code and easy understandability.
 
typealias AudioS1 = UInt16
Advertisement