| 334 | } |
| 335 | } |
| 336 | void replace ( const string & key, const ValueType & value ) { |
| 337 | return replace(hash64z(key.c_str()),value); |
| 338 | } |
| 339 | void replace ( uint64_t key, const ValueType & value ) { |
| 340 | auto it = objects.find(key); |
| 341 | DAS_ASSERT(it!=objects.end()); |