Whether the queue is empty.
| 134 | |
| 135 | // Whether the queue is empty. |
| 136 | bool empty() const |
| 137 | { |
| 138 | return front_ == 0; |
| 139 | } |
| 140 | |
| 141 | // Test whether an operation is already enqueued. |
| 142 | bool is_enqueued(Operation* o) const |
no outgoing calls
no test coverage detected