std::pointer_traits< _Ptr >
Uniform interface to all pointer-like types.
- Provided by: libstdc++-9-doc (Version: 9.5.0-1ubuntu1~22.04.1)
- Source: gcc-9
- Report a bug
Uniform interface to all pointer-like types.
using difference_type = __detected_or_t< ptrdiff_t,
__difference_type, _Ptr >
The type used to represent the difference between two pointers. using
element_type = __detected_or_t< __get_first_arg_t< _Ptr >,
__element_type, _Ptr >
The type pointed to. using pointer = _Ptr
The pointer type. template<typename _Up > using rebind = typename
__rebind< _Ptr, _Up >::type
A pointer to a different type.
static _Ptr pointer_to (__make_not_void<
element_type > &__e)
struct std::pointer_traits< _Ptr >" Uniform interface to all pointer-like types.
Definition at line 83 of file ptr_traits.h.
The type used to represent the difference between two pointers.
Definition at line 108 of file ptr_traits.h.
The type pointed to.
Definition at line 104 of file ptr_traits.h.
The pointer type.
Definition at line 101 of file ptr_traits.h.
A pointer to a different type.
Definition at line 113 of file ptr_traits.h.
Generated automatically by Doxygen for libstdc++ from the source code.