hasMemberNullValue

Is true iff T is a type with a member null value.

enum hasMemberNullValue (
T
)

Examples

class S1
{
	int x;
	int* xp;
	static nullValue = typeof(this).init;
}
static assert(hasMemberNullValue!S1);

Meta