Thread overview
partial application for templates
Dec 25, 2017
Mengu
Dec 25, 2017
MrSmith
Dec 25, 2017
David Nadlinger
Dec 26, 2017
Mengu
December 25, 2017
is partially applying templates possible?
December 25, 2017
On Monday, 25 December 2017 at 20:39:52 UTC, Mengu wrote:
> is partially applying templates possible?

template A(X, Y, Z) {}
alias B(X, Y) = A!(X, Y, int);
December 25, 2017
On Monday, 25 December 2017 at 20:39:52 UTC, Mengu wrote:
> is partially applying templates possible?

Check out std.meta.Apply{Left, Right}.

 — David
December 26, 2017
On Monday, 25 December 2017 at 22:58:50 UTC, David Nadlinger wrote:
> On Monday, 25 December 2017 at 20:39:52 UTC, Mengu wrote:
>> is partially applying templates possible?
>
> Check out std.meta.Apply{Left, Right}.
>
>  — David

thanks a lot mr. smith & david.