| 457 | |
| 458 | public: |
| 459 | class Iter |
| 460 | { |
| 461 | public: |
| 462 | PX_INLINE Iter(HashBase& b) : mBucket(0), mEntry(uint32_t(b.EOL)), mTimestamp(b.mTimestamp), mBase(b) |
| 463 | { |
| 464 | if(mBase.mEntriesCapacity > 0) |
| 465 | { |
| 466 | mEntry = mBase.mHash[0]; |
| 467 | skip(); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | PX_INLINE void check() const |