Tagged Questions
The template-mixins tag has no wiki summary.
16
votes
3answers
2k views
4
votes
5answers
731 views
How do people get mixin-style re-use in C#?
I come from a C++ background where I can use template mixins to write code that refers to FinalClass which is a template parameter that is passed in. This allows reusable functions to be "mixed-in" ...
1
vote
1answer
65 views
Creating a typetuple from a variadic template argument list in D
I have a templated struct of the following form:
struct Command(T) {
alias T CommandType;
// ...
}
In addition, I have another container struct that holds a bunch of these Command structs:
...