Pointer type.
Pointer target type.
static assert(is(PointerTarget!(bool*) == bool)); static assert(is(PointerTarget!(const bool*) == const bool)); static assert(is(PointerTarget!(const shared bool*) == const shared bool)); static assert(!is(PointerTarget!bool));
Retrieves the target type U of a pointer U*.