www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - partial application for templates

reply Mengu <mengukagan gmail.com> writes:
is partially applying templates possible?
Dec 25 2017
next sibling parent MrSmith <mrsmith33 yandex.ru> writes:
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);
Dec 25 2017
prev sibling parent reply David Nadlinger <code klickverbot.at> writes:
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
Dec 25 2017
parent Mengu <mengukagan gmail.com> writes:
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.
Dec 26 2017