isPointerType

Members

Static variables

isPointerType
auto isPointerType;
Undocumented in source.
isPointerType
auto isPointerType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is a pointer type.

Examples

static assert ( isPointerType!(void*));
static assert (!isPointerType!(char[]));

Meta