| 246 | } |
| 247 | |
| 248 | void enqueue_strict(K cl, unsigned priority, T&& item) final { |
| 249 | high_queue[priority].enqueue(cl, 0, std::move(item)); |
| 250 | } |
| 251 | |
| 252 | void enqueue_strict_front(K cl, unsigned priority, T&& item) final { |
| 253 | high_queue[priority].enqueue_front(cl, 0, std::move(item)); |