| 281 | |
| 282 | template <class TOp> |
| 283 | inline void Traverse(TOp& op) const noexcept { |
| 284 | for (TChunkList::TConstIterator i = Chunks_.Begin(); i != Chunks_.End(); ++i) { |
| 285 | op(i->Data(), i->DataSize()); |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | inline IAllocator* RealAllocator() const noexcept { |
| 290 | return Alloc_; |