isTypeSet

Checks if the type list is TypeSet.

enum bool isTypeSet(T...);

Examples

static assert(isTypeSet!(TypeSet!()));
static assert(isTypeSet!(TypeSet!void));
static assert(isTypeSet!(TypeSet!(void, int, typeof(null))));

Meta