libstdc++
std::_Deque_base Class Reference
Inheritance diagram for std::_Deque_base:

List of all members.

Public Types

Public Member Functions

Protected Types

Protected Member Functions

Protected Attributes


Detailed Description

Deque base class. This class provides the unified face for deque's allocation. This class's constructor and destructor allocate and deallocate (but do not initialize) storage. This makes exception safety easier.

Nothing in this class ever constructs or destroys an actual Tp element. (Deque handles that itself.) Only/All memory management is performed here.


Member Function Documentation

void std::_Deque_base::_M_initialize_map ( size_t  __num_elements) [protected]

Layout storage.

Parameters:
num_elementsThe count of T's for which to allocate space at first.
Returns:
Nothing.

The initial underlying memory layout is a bit complicated...

Definition at line 574 of file stl_deque.h.

References std::max().


The documentation for this class was generated from the following file: