| 35 | HashTableCore(), |
| 36 | nElmts_(0), |
| 37 | tableSize_(HashTableCore::canonicalSize(size)), |
| 38 | table_(nullptr) |
| 39 | { |
| 40 | if (tableSize_) |
| 41 | { |
| 42 | table_ = new hashedEntry*[tableSize_]; |
| 43 | |
| 44 | for (label hashIdx = 0; hashIdx < tableSize_; hashIdx++) |
| 45 | { |
| 46 | table_[hashIdx] = 0; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | operator>>(is, *this); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // |
no outgoing calls
no test coverage detected