Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
3
namespace engine::runtime {
4
5
bool RuntimeCache::contains(const std::string & key) const {
6
return cache_.find(key) != cache_.end();
7
}
8
9
void RuntimeCache::erase(const std::string & key) {
10
cache_.erase(key);
Callers
nothing calls this directly
Calls
2
find
Method · 0.45
end
Method · 0.45
Tested by
no test coverage detected