tryPushBack overloads
Declared in <bdlcc_deque.h>
Try to move-append item to the back without blocking.
int
tryPushBack(bslmf::MovableRef<TYPE> item);
» more...
Try to append item to the back without blocking.
int
tryPushBack(TYPE const& item);
» more...
Push items from the specified range to the back while space remains.
template<class INPUT_ITER>
Deque<TYPE>::size_type
tryPushBack(
INPUT_ITER begin,
INPUT_ITER end);
» more...
| Name | Description |
|---|---|
| item | value to move-append |
| begin | start of the input range |
| end | end of the input range |