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

Method contains

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

Source from the content-addressed store, hash-verified

3namespace engine::runtime {
4
5bool ArtifactStore::contains(const std::string & key) const {
6 return artifacts_.find(key) != artifacts_.end();
7}
8
9void ArtifactStore::put(std::string key, StoredArtifact artifact) {
10 artifacts_[std::move(key)] = std::move(artifact);

Callers

nothing calls this directly

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected