| 327 | } |
| 328 | |
| 329 | static void EnqueueAll(TLockFreeStack<ValueType>& stack) { |
| 330 | // there is no enqueAll with moving signature in LockFreeStack |
| 331 | Enqueue(stack, 0); |
| 332 | } |
| 333 | |
| 334 | static void DequeueAll(TLockFreeStack<ValueType>& stack) { |
| 335 | TVector<ValueType> values; |
no test coverage detected