is_pointer<t_TYPE*> | This partial specialization of is_pointer derives from bsl::true_type for when the (template parameter) t_TYPE is a (cv-unqalified) pointer type. |
is_pointer<t_TYPE volatile*> | This partial specialization of is_pointer derives from bsl::true_type for when the (template parameter) t_TYPE is a volatile qualified pointer type. |
is_pointer<t_TYPE const*> | This partial specialization of is_pointer derives from bsl::true_type for when the (template parameter) t_TYPE is a const qualified pointer type. |
is_pointer<t_TYPE const volatile*> | This partial specialization of is_pointer derives from bsl::true_type for when the (template parameter) t_TYPE is a 'const volatile' qualified pointer type. |