std::allocator_traits<Alloc>::deallocate

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

# Return value

(none)

# Example

This section is incompleteReason: no example

# See also