MCPcopy Create free account
hub / github.com/cinit/TMoe / containsKey

Method containsKey

app/src/main/cpp/utils/HashMap.h:76–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74 }
75
76 [[nodiscard]] bool containsKey(const K &key) const {
77 return backend.find(key) != backend.end();
78 }
79
80 [[nodiscard]] V *get(const K &key) const {
81 auto p = backend.find(key);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected