Returns the current number of elements contained in the queue Returned value may not reflect results of pending operations. This operation reads shared data and will trigger a race condition. */
| 206 | /** Returned value may not reflect results of pending operations. |
| 207 | This operation reads shared data and will trigger a race condition. */ |
| 208 | size_type size() const { return __TBB_load_with_acquire(my_size); } |
| 209 | |
| 210 | //! Pushes elem onto the queue, increasing capacity of queue if necessary |
| 211 | /** This operation can be safely used concurrently with other push, try_pop or emplace operations. */ |
no test coverage detected