MCPcopy Create free account
hub / github.com/ceph/ceph / extract

Method extract

src/mgr/MgrMapCache.h:162–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160 }
161 void insert(std::string_view k, Value v) { CacheImp::insert(k, v); }
162 bool extract(std::string_view k, Value* out) noexcept { return CacheImp::extract(k, out); }
163 void erase(std::string_view k) noexcept { Value v{}; (void)CacheImp::extract(k, &v); }
164 void clear() noexcept { CacheImp::clear(); }
165private:

Callers 1

eraseMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected