Returns the number of elements in the queue. This is lock-free.
| 80 | |
| 81 | // Returns the number of elements in the queue. This is lock-free. |
| 82 | size_t size() const { return total_count_; } |
| 83 | |
| 84 | // Add an element to the queue. |
| 85 | template <void (std::deque<T>::*Push)(T &&)> void push(T &&t, bool priority) { |
no outgoing calls
no test coverage detected