isSignedIntegerType

template isSignedIntegerType (
T
) {}

Members

Static variables

isSignedIntegerType
bool isSignedIntegerType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is a built-in signed integer type

Examples

static assert ( isSignedIntegerType!(int));
static assert ( isSignedIntegerType!(const(long)));
static assert (!isSignedIntegerType!(ubyte));

Meta