std::is_pointer (3) Linux Manual Page
std::is_pointer – std::is_pointer Synopsis Defined in header<type_traits> template <class T> (since C++ 11) struct is_pointer; Checks whether T is a pointer_to_object or a pointer to function (but not a pointer to member/member function). Provides the member constant value which is equal to true, if T is a object/function pointer type. Otherwise, value is equal to…
