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.
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
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);
is partially applying templates possible?