MCPcopy Create free account
hub / github.com/apache/trafficserver / is

Method is

lib/yamlcpp/include/yaml-cpp/node/impl.h:195–201  ·  view source on GitHub ↗

assignment

Source from the content-addressed store, hash-verified

193
194// assignment
195inline bool Node::is(const Node& rhs) const {
196 if (!m_isValid || !rhs.m_isValid)
197 throw InvalidNode(m_invalidKey);
198 if (!m_pNode || !rhs.m_pNode)
199 return false;
200 return m_pNode->is(*rhs.m_pNode);
201}
202
203template <typename T>
204inline Node& Node::operator=(const T& rhs) {

Callers 4

getMethod · 0.45
node_data.cppFile · 0.45
removeMethod · 0.45
operator==Function · 0.45

Calls 1

InvalidNodeFunction · 0.85

Tested by

no test coverage detected