Reputation: 85975
In C++, I do using A = B; to make an alias. How would I do this in Swift?
using A = B;
Upvotes: 1
Views: 703
From the Apple's manual:
typealias AudioSample = UInt16
Exactly same with C++ stuff.
Upvotes: 9