tryPushFront overloads
Declared in <bdlcc_deque.h>
Try to move-append item to the front without blocking.
int
tryPushFront(bslmf::MovableRef<TYPE> item);
» more...
Try to append item to the front without blocking.
int
tryPushFront(TYPE const& item);
» more...
Push items from the specified range to the front while space remains.
template<class INPUT_ITER>
Deque<TYPE>::size_type
tryPushFront(
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 |