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

Method find

src/framework/runtime/artifacts.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11}
12
13StoredArtifact * ArtifactStore::find(const std::string & key) {
14 const auto it = artifacts_.find(key);
15 if (it == artifacts_.end()) {
16 return nullptr;
17 }
18 return &it->second;
19}
20
21const StoredArtifact * ArtifactStore::find(const std::string & key) const {
22 const auto it = artifacts_.find(key);

Callers 6

split_csvFunction · 0.45
load_registry_configFunction · 0.45
find_option_matchFunction · 0.45
containsMethod · 0.45
containsMethod · 0.45

Calls 1

endMethod · 0.45

Tested by

no test coverage detected