Hello.please, how to call template constructor of a class? it's completelyescaped my mind. i.e. i have this class:class A { this(alias ent) (string name) { ... } } and i want to do: void foo () { ... } auto a = new A!foo("xFn");
Template the whole class? class A(alias ent)?
