std::deque::shrink_to_fit
From cppreference.com
void shrink_to_fit(); |
(since C++11) | |
Requests the removal of unused capacity.
It is a non-binding request to reduce capacity to size. It depends on the implementation if the request is fulfilled.
Contents |
[edit] Parameters
(none)
[edit] Return value
(none)
[edit] Complexity
Constant
[edit] See also
returns the number of elements (public member function) |