Removes and returns item from back of Queue
| 230 | |
| 231 | // Removes and returns item from back of Queue |
| 232 | T pop_back() |
| 233 | { |
| 234 | std::scoped_lock lock(muxQueue); |
| 235 | auto t = std::move(deqQueue.back()); |
| 236 | deqQueue.pop_back(); |
| 237 | return t; |
| 238 | } |
| 239 | |
| 240 | // Adds an item to back of Queue |
| 241 | void push_back(const T& item) |
no outgoing calls
no test coverage detected