Check type is a struct at compile time?

Gary Willoughby via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Dec 5 12:38:30 PST 2014


How can i check that a type is a struct at compile time? I know i 
can test for a class like this:

static if(is(T == class))
{
     ...
}

But how to do the same thing for a struct?


More information about the Digitalmars-d-learn mailing list