Suppose I have

class A
{
    mixin t!A;
}

is there a way to replace the mixin template's dependence on the
class name?

e.g.,

class A
{
    mixin t!This; // This turns in to A
}

(so, for example, renaming the above class only has to rename one
place instead of two)

Reply via email to