MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / contains

Method contains

src/framework/runtime/cache.cpp:5–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace engine::runtime {
4
5bool RuntimeCache::contains(const std::string & key) const {
6 return cache_.find(key) != cache_.end();
7}
8
9void RuntimeCache::erase(const std::string & key) {
10 cache_.erase(key);

Callers

nothing calls this directly

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected