how to shorten templates structs name?

drug drug2004 at bk.ru
Tue Oct 10 11:30:00 UTC 2017


using classes I can make an inherited class of templated class and avoid 
too long mangled name:
```
class TemplatedClass(A, Very, Much, Args, Here) { ... }

class ShortenClass : TemplatedClass!(A,Very, Much, Args, Here) { ... };
```
Now ShortenClass has a nice mangling.

What can be done in case of struct?


More information about the Digitalmars-d-learn mailing list