| 28 | // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // |
| 29 | |
| 30 | void Foam::hashedWordList::rehash() |
| 31 | { |
| 32 | indices_.clear(); |
| 33 | forAll(*this, i) |
| 34 | { |
| 35 | indices_.insert(List<word>::operator[](i), i); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | |
| 40 | // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // |