libstdc++
|
Public Types | |
typedef _Tp_Deleter | deleter_type |
typedef _Tp | element_type |
typedef _Tp * | pointer |
Public Member Functions | |
pointer | get () const |
std::add_lvalue_reference < deleter_type >::type | get_deleter () |
std::add_lvalue_reference < typename std::add_const < deleter_type >::type >::type | get_deleter () const |
operator __unspecified_bool_type () const | |
unique_ptr & | operator= (unique_ptr &&__u) |
template<typename _Up , typename _Up_Deleter > | |
unique_ptr & | operator= (unique_ptr< _Up, _Up_Deleter > &&__u) |
unique_ptr & | operator= (__unspecified_pointer_type) |
unique_ptr & | operator= (const unique_ptr &) |
std::add_lvalue_reference < element_type >::type | operator[] (size_t __i) const |
pointer | release () |
void | reset (pointer __p=pointer()) |
template<typename _Up > | |
void | reset (_Up) |
void | swap (unique_ptr &&__u) |
unique_ptr (pointer __p) | |
unique_ptr (pointer __p, typename std::conditional< std::is_reference< deleter_type >::value, deleter_type, const deleter_type & >::type __d) | |
unique_ptr (pointer __p, typename std::remove_reference< deleter_type >::type &&__d) | |
unique_ptr (unique_ptr &&__u) | |
template<typename _Up , typename _Up_Deleter > | |
unique_ptr (unique_ptr< _Up, _Up_Deleter > &&__u) | |
unique_ptr (const unique_ptr &) | |
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) | |
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) | |
template<typename _Up > | |
unique_ptr (_Up *, typename std::enable_if< std::is_convertible< _Up *, pointer >::value >::type *=0) |
20.7.12.3 unique_ptr for array objects with a runtime length
Definition at line 233 of file unique_ptr.h.