Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::alloca...::deallocate(3) C++ Standard Libarystd::alloca...::deallocate(3)

NAME
       std::allocator_traits::deallocate - std::allocator_traits::deallocate

Synopsis
	  Defined in header <memory>
	  static  void	deallocate(  Alloc&  a,	 pointer  p,  size_type	 n  );
       (since C++11)
										 (un-
       til C++20)
	  static constexpr void	deallocate( Alloc& a, pointer p,  size_type  n
       );  (since C++20)

	  Uses	the  allocator a to deallocate the storage referenced by p, by
       calling
	  a.deallocate(p, n)

Parameters
	  a - allocator	to use
	  p - pointer to the previously	allocated storage
	  n - the number of objects the	storage	was allocated for

Return value
	  (none)

See also
	  allocate   allocates uninitialized storage using the allocator
	  [static]   (public static member function)
	  deallocate deallocates storage
		     (public member function of	std::allocator<T>)

http://cppreference.com		  2022.07.31	 std::alloca...::deallocate(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::allocator_traits::deallocate&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help