Checks if the queue is empty.
| 174 | |
| 175 | /// Checks if the queue is empty. |
| 176 | inline bool empty() const noexcept |
| 177 | { |
| 178 | return size() == 0; |
| 179 | } |
| 180 | |
| 181 | /// Returns number of threads of this queue. |
| 182 | int num_threads() const noexcept; |
no test coverage detected