MCPcopy Create free account
hub / github.com/EmbeddedRPC/erpc / has

Method has

erpcgen/src/cpptemplate/cpptempl.cpp:435–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

433 return data.empty();
434}
435bool data_map::has(const std::string &key)
436{
437 bool local_has = data.find(key) != data.end();
438 return !local_has && parent ? parent->has(key) : local_has;
439}
440
441// data_ptr
442template <>

Callers 3

getTypeInfoMethod · 0.80
getTypeInfoMethod · 0.80
BOOST_AUTO_TEST_CASEFunction · 0.80

Calls 1

endMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.64