append overloads
Declared in <bdlc_queue.h>
Append the sequence of values in the specified srcQueue.
void
append(Queue const& srcQueue);
» more...
Append the specified item to the end of this queue.
void
append(T const& item);
» more...
Append elements from srcQueue starting at srcIndex to this queue.
void
append(
Queue const& srcQueue,
int srcIndex,
int numElements);
» more...
| Name | Description |
|---|---|
| srcQueue | queue whose elements are appended |
| item | value to append |
| srcIndex | first index in srcQueue to copy from |
| numElements | number of elements to append |