libcopp 2.3.1
|
Non-standard RAII type for managing pointers obtained from allocators. More...
#include <allocator_ptr.h>
Public Types | |
using | pointer = typename ::std::allocator_traits< Alloc >::pointer |
using | value_type = typename ::std::allocator_traits< Alloc >::value_type |
Public Member Functions | |
allocated_ptr (Alloc &a, pointer p) noexcept | |
Take ownership of p. | |
template<class Ptr , class = nostd::enable_if_t<::std::is_same<Ptr, value_type*>::value>> | |
allocated_ptr (Alloc &a, Ptr p) | |
Convert __ptr to allocator's pointer type and take ownership of it. | |
allocated_ptr (allocated_ptr &&gd) noexcept | |
Transfer ownership of the owned pointer. | |
~allocated_ptr () | |
Deallocate the owned pointer. | |
allocated_ptr & | operator= (std::nullptr_t) noexcept |
Release ownership of the owned pointer. | |
value_type * | get () noexcept |
Get the address that the owned pointer refers to. | |
Private Attributes | |
Alloc * | alloc_ |
pointer | ptr_ |
Non-standard RAII type for managing pointers obtained from allocators.
Definition at line 17 of file allocator_ptr.h.
using memory::allocated_ptr< Alloc >::pointer = typename ::std::allocator_traits<Alloc>::pointer |
Definition at line 18 of file allocator_ptr.h.
using memory::allocated_ptr< Alloc >::value_type = typename ::std::allocator_traits<Alloc>::value_type |
Definition at line 19 of file allocator_ptr.h.
|
inlinenoexcept |
Take ownership of p.
Definition at line 22 of file allocator_ptr.h.
|
inline |
Convert __ptr to allocator's pointer type and take ownership of it.
Definition at line 26 of file allocator_ptr.h.
|
inlinenoexcept |
Transfer ownership of the owned pointer.
Definition at line 29 of file allocator_ptr.h.
|
inline |
Deallocate the owned pointer.
Definition at line 32 of file allocator_ptr.h.
|
inlinenoexcept |
Get the address that the owned pointer refers to.
Definition at line 45 of file allocator_ptr.h.
|
inlinenoexcept |
Release ownership of the owned pointer.
Definition at line 39 of file allocator_ptr.h.
|
private |
Definition at line 48 of file allocator_ptr.h.
|
private |
Definition at line 49 of file allocator_ptr.h.