std::pmr::polymorphic_allocator::destroy
From cppreference.com
                    
                                        
                    < cpp | memory | polymorphic allocator
                    
                                                            
                    | template<class U> void destroy(U* p); | (since C++17) | |
Destroys the object pointed to by p, as if by calling p->~U().
Parameters
| p | - | pointer to the object being destroyed | 
See also
| [static] | destructs an object stored in the allocated storage (function template) |