| 255 | |
| 256 | template <typename K, typename V> |
| 257 | bool Write(const K& key, const V& value, bool fSync = false) |
| 258 | { |
| 259 | CDBBatch batch(*this); |
| 260 | batch.Write(key, value); |
| 261 | return WriteBatch(batch, fSync); |
| 262 | } |
| 263 | |
| 264 | template <typename K> |
| 265 | bool Exists(const K& key) const |
nothing calls this directly
no test coverage detected