MCPcopy Create free account
hub / github.com/argotorg/solidity / find

Method find

tools/yulPhaser/ProgramCache.cpp:115–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113}
114
115Program const* ProgramCache::find(std::string const& _abbreviatedOptimisationSteps) const
116{
117 auto const& pair = m_entries.find(_abbreviatedOptimisationSteps);
118 if (pair == m_entries.end())
119 return nullptr;
120
121 return &(pair->second.program);
122}
123
124CacheStats ProgramCache::gatherStats() const
125{

Callers 4

ProgramCache.cppFile · 0.45
optimiseProgramMethod · 0.45
countRoundEntriesMethod · 0.45
Common.hFile · 0.45

Calls 1

endMethod · 0.45

Tested by

no test coverage detected