type to check
true if T is a built-in signed integer type
static assert ( isSignedIntegerType!(int)); static assert ( isSignedIntegerType!(const(long))); static assert (!isSignedIntegerType!(ubyte));
See Implementation