GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::allocator_traits::destroy(3) C++ Standard Libary std::allocator_traits::destroy(3)

std::allocator_traits::destroy - std::allocator_traits::destroy


Defined in header <memory>
template< class T > (since C++11)
static void destroy( Alloc& a, T* p ); (until C++20)
template< class T > (since C++20)
static constexpr void destroy( Alloc& a, T* p );


Calls the destructor of the object pointed to by p. If possible, does so by calling
a.destroy(p). If not possible (e.g. Alloc does not have the member function
destroy()), then calls
the destructor of *p directly, as p->~T()
(until C++20)
std::destroy_at(p)
(since C++20).


a - allocator to use for destruction
p - pointer to the object being destroyed


(none)


Because this function provides the automatic fall back to direct call to the
destructor, the member function destroy() is an optional Allocator requirement since
C++11.


destroy destructs an object in allocated storage
(until C++20) (public member function of std::allocator<T>)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.