libstdc++
std::pointer_traits< _Ptr > Struct Template Reference

#include <memory>

Inherits std::__ptr_traits_impl< _Ptr, _Elt >.

Public Types

using difference_type = __detected_or_t< ptrdiff_t, __diff_t, _Ptr >
 
using element_type = _Elt
 
using pointer = _Ptr
 
template<typename _Up >
using rebind = typename __detected_or_t< __replace_first_arg< _Ptr, _Up >, __rebind, _Ptr, _Up >::type
 

Static Public Member Functions

static pointer pointer_to (element_type &__r)
 

Detailed Description

template<typename _Ptr>
struct std::pointer_traits< _Ptr >

Uniform interface to all pointer-like types.

Since
C++11

Definition at line 184 of file ptr_traits.h.

Member Typedef Documentation

◆ difference_type

template<typename _Ptr , typename _Elt >
using std::__ptr_traits_impl< _Ptr, _Elt >::difference_type = __detected_or_t<ptrdiff_t, __diff_t, _Ptr>
inherited

The type used to represent the difference between two pointers.

Definition at line 163 of file ptr_traits.h.

◆ element_type

template<typename _Ptr , typename _Elt >
using std::__ptr_traits_impl< _Ptr, _Elt >::element_type = _Elt
inherited

The type pointed to.

Definition at line 160 of file ptr_traits.h.

◆ pointer

template<typename _Ptr , typename _Elt >
using std::__ptr_traits_impl< _Ptr, _Elt >::pointer = _Ptr
inherited

The pointer type.

Definition at line 157 of file ptr_traits.h.

◆ rebind

template<typename _Ptr , typename _Elt >
template<typename _Up >
using std::__ptr_traits_impl< _Ptr, _Elt >::rebind = typename __detected_or_t<__replace_first_arg<_Ptr, _Up>, __rebind, _Ptr, _Up>::type
inherited

A pointer to a different type.

Definition at line 167 of file ptr_traits.h.

Member Function Documentation

◆ pointer_to()

template<typename _Ptr , typename _Elt , bool = is_void<_Elt>::value>
static pointer std::__ptr_traits_ptr_to< _Ptr, _Elt, bool >::pointer_to ( element_type &  __r)
inlinestaticinherited

Obtain a pointer to an object.

Parameters
__rA reference to an object of type element_type
Returns
pointer::pointer_to(__r)
Precondition
pointer::pointer_to(__r) is a valid expression.

Definition at line 114 of file ptr_traits.h.


The documentation for this struct was generated from the following file: