MCPcopy Create free account
hub / github.com/GPUOpen-Tools/radeon_gpu_analyzer / is

Method is

external/yaml-cpp/include/yaml-cpp/node/impl.h:189–195  ·  view source on GitHub ↗

assignment

Source from the content-addressed store, hash-verified

187
188// assignment
189inline bool Node::is(const Node& rhs) const {
190 if (!m_isValid || !rhs.m_isValid)
191 throw InvalidNode();
192 if (!m_pNode || !rhs.m_pNode)
193 return false;
194 return m_pNode->is(*rhs.m_pNode);
195}
196
197template <typename T>
198inline Node& Node::operator=(const T& rhs) {

Callers 1

operator==Function · 0.45

Calls 1

InvalidNodeFunction · 0.85

Tested by

no test coverage detected