I want to create a mixin with an arbitrary number of parameters.
I tried this: mixin template ProviderParams(Types...)(Types t) { } But it does not compile. What's my error?
Victor Porton via Digitalmars-d-learn Mon, 25 Feb 2019 12:25:43 -0800
I want to create a mixin with an arbitrary number of parameters.
I tried this: mixin template ProviderParams(Types...)(Types t) { } But it does not compile. What's my error?