| 252 | } |
| 253 | template <typename TCollection> |
| 254 | void EnqueueAll(const TCollection& data) { |
| 255 | EnqueueAll(data.begin(), data.end()); |
| 256 | } |
| 257 | template <typename TIter> |
| 258 | void EnqueueAll(TIter dataBegin, TIter dataEnd) { |
| 259 | if (dataBegin == dataEnd) { |
no test coverage detected