BloombergLP::bdlc::Queue::append

Append the specified item to the end of this queue.

Synopsis

Declared in <bdlc_queue.h>

void
append(T const& item);

Description

Append to the end of this queue the value of the specified item. Note that this function is a synonym for pushBack and is logically equivalent to (but generally more efficient than): ` insert(length(), item); `

Parameters

NameDescription
itemvalue to append