std::experimental::pmr::polymorphic_allocator<T>::destroy
From cppreference.com
< cpp | experimental | polymorphic allocator
C++
Library fundamentals
Polymorphic allocator library
Convenience aliases for containers using polymorphic_allocator | ||||
| Memory resource classes | ||||
| Global memory resources | ||||
| Type-erased allocator support for existing classes | ||||
std::experimental::pmr::polymorphic_allocator
| Member functions | ||||
polymorphic_allocator::destroy | ||||
| Non-member functions | ||||
| template< class U > void destroy( U* p ); |
(library fundamentals TS) | |
Destroys the object pointed to by p, as if by calling p->~U().
[edit] Parameters
| p | - | pointer to the object being destroyed |
[edit] See also
| [static] |
destructs an object stored in the allocated storage (function template) [edit] |