isIntegerType

template isIntegerType (
T
) {}

Members

Static variables

isIntegerType
bool isIntegerType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is a built-in integer type

Examples

static assert ( isIntegerType!(long));
static assert ( isIntegerType!(ubyte));
static assert (!isIntegerType!(char));

Meta