"instanceOf" trait for conditional implementations

monarch_dodra monarchdodra at gmail.com
Thu Oct 4 05:20:53 PDT 2012


On Thursday, 4 October 2012 at 09:43:08 UTC, monarch_dodra wrote:
> [SNIP]

You know what? Forget I said anything? Using lambdas is an 
incredibly good workaround for all the problems stated above, 
making the initial point moot.

Lamba if:

template isAssignable(T, U)
{
     enum bool isAssignable =
         is(typeof((ref T t, ref U u) => {t = u;}));
}

This allow testing on t and u, without ever having to 
construct/acquire them. Neat-o!!!


More information about the Digitalmars-d mailing list