Lines Matching refs:item
12 std::queue. The operation ``try_pop`` pops an item if it is available.
24 T item;
26 item = MySerialQueue.front();
28 ... process item...
36 before another thread snatches the last item from ``MySerialQueue``.
46 T item;
47 if( MyQueue.try_pop(item) ) {
48 ...process item...
71 - ``pop(item)`` waits until it can succeed.
74 - ``push(item)`` waits until it can succeed without exceeding the
78 - ``try_push(item)`` pushes ``item`` only if it would not exceed the