| 88 | |
| 89 | template<class T, class Key, class Hash> |
| 90 | inline bool Foam::HashTable<T, Key, Hash>::set |
| 91 | ( |
| 92 | const Key& key, |
| 93 | const T& newEntry |
| 94 | ) |
| 95 | { |
| 96 | return this->set(key, newEntry, false); |
| 97 | } |
| 98 | |
| 99 | |
| 100 | template<class T, class Key, class Hash> |