Determines whether T is a pointer type.
A type.
$(D_KEYWORD true) if T is a pointer type, $(D_KEYWORD false) otherwise.
static assert(isPointer!(bool*)); static assert(isPointer!(const bool*)); static assert(isPointer!(const shared bool*)); static assert(!isPointer!bool);
See Implementation
Determines whether T is a pointer type.