Constructors
Declared in <bslalg_dequeiterator.h>
Create a singular iterator (i.e., having internal null pointers).
DequeIterator();
» more...
Create an iterator pointing to the first element in the block pointed to by the specified blockPtrPtr.
DequeIterator(BlockPtr* blockPtrPtr);
» more...
Create an iterator to an element within a specified block.
DequeIterator(
BlockPtr* blockPtrPtr,
VALUE_TYPE* valuePtr);
» more...
| Name | Description |
|---|---|
| blockPtrPtr | address of the block pointer for the initial block |
| valuePtr | address of the element within that block |