libstdc++
std::unique_ptr< _Tp[], _Dp > Class Template Reference

Public Types

typedef _Dp deleter_type
 
typedef _Tp element_type
 
typedef _Tp * pointer
 

Public Member Functions

 unique_ptr (pointer __p) noexcept
 
 unique_ptr (pointer __p, typename std::conditional< std::is_reference< deleter_type >::value, deleter_type, const deleter_type & >::type __d) noexcept
 
 unique_ptr (pointer __p, typename std::remove_reference< deleter_type >::type &&__d) noexcept
 
constexpr unique_ptr (nullptr_t) noexcept
 
 unique_ptr (unique_ptr &&__u) noexcept
 
template<typename _Up , typename _Ep >
 unique_ptr (unique_ptr< _Up, _Ep > &&__u) noexcept
 
 unique_ptr (const unique_ptr &)=delete
 
template<typename _Up >
 unique_ptr (_Up *, typename std::conditional< std::is_reference< deleter_type >::value, deleter_type, const deleter_type & >::type, typename std::enable_if< std::is_convertible< _Up *, pointer >::value >::type *=0)=delete
 
template<typename _Up >
 unique_ptr (_Up *, typename std::remove_reference< deleter_type >::type &&, typename std::enable_if< std::is_convertible< _Up *, pointer >::value >::type *=0)=delete
 
template<typename _Up >
 unique_ptr (_Up *, typename std::enable_if< std::is_convertible< _Up *, pointer >::value >::type *=0)=delete
 
pointer get () const noexcept
 
deleter_type & get_deleter () noexcept
 
const deleter_type & get_deleter () const noexcept
 
 operator bool () const noexcept
 
unique_ptroperator= (unique_ptr &&__u) noexcept
 
template<typename _Up , typename _Ep >
unique_ptroperator= (unique_ptr< _Up, _Ep > &&__u) noexcept
 
unique_ptroperator= (nullptr_t) noexcept
 
unique_ptroperator= (const unique_ptr &)=delete
 
std::add_lvalue_reference
< element_type >::type 
operator[] (size_t __i) const
 
pointer release () noexcept
 
void reset (pointer __p=pointer()) noexcept
 
void reset (nullptr_t) noexcept
 
template<typename _Up >
void reset (_Up)=delete
 
void swap (unique_ptr &__u) noexcept
 

Detailed Description

template<typename _Tp, typename _Dp>
class std::unique_ptr< _Tp[], _Dp >

20.7.12.3 unique_ptr for array objects with a runtime length

Definition at line 271 of file unique_ptr.h.


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