All this time I've been using alias, but today I discovered by chance that D has typedef. Interesting enough, TDPL doesn't even cover it as far as I can tell (not even listed in D Keywords nor the Errata). The site does cover it, but it doesn't talk about it much. My code compiles with either, but what is the difference between the two, and when should I use typedef over alias?
|
|
|||
|
|
|
With
Without the explicit merge, calling This isn't only required for classes; if functions from two different imported modules are to overload each other, they must be merged explicitly with
This pull request adds a template |
|||
|
|
|
The 'typedef' keyword is a remnant of D1, and was always intended to be deprecated. As of D 2.057, it was fully deprecated. You should always use alias when working with D2. |
|||||||||||||
|