Attempt to dequeue an item from head of queue. Does not wait for item to become available. Returns true if successful; false otherwise. */
| 150 | /** Does not wait for item to become available. |
| 151 | Returns true if successful; false otherwise. */ |
| 152 | bool try_pop( T& result ) { |
| 153 | return this->internal_try_pop( &result ); |
| 154 | } |
| 155 | |
| 156 | //! Return the number of items in the queue; thread unsafe |
| 157 | size_type unsafe_size() const {return this->internal_size();} |
no test coverage detected