std::allocator_traits<Alloc>::deallocate
Min standard notice:
Header: <memory>
Uses the allocator a to deallocate the storage referenced by p, by calling a.deallocate(p, n).
# Declarations
static void deallocate( Alloc& a, pointer p, size_type n );
(since C++11) (constexpr since C++20)
# Parameters
a: allocator to usep: pointer to the previously allocated storagen: the number of objects the storage was allocated for
# Return value
(none)
# Example
This section is incompleteReason: no example