isUnsignedIntegerType

template isUnsignedIntegerType (
T
) {}

Members

Static variables

isUnsignedIntegerType
bool isUnsignedIntegerType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is a built-in unsigned integer type

Examples

static assert (!isUnsignedIntegerType!(int));
static assert ( isUnsignedIntegerType!(ubyte));
static assert ( isUnsignedIntegerType!(const(ulong)));

Meta