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

Method equals

lib/yamlcpp/include/yaml-cpp/node/detail/impl.h:100–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98
99template <typename T>
100inline bool node::equals(const T& rhs, shared_memory_holder pMemory) {
101 T lhs;
102 if (convert<T>::decode(Node(*this, pMemory), lhs)) {
103 return lhs == rhs;
104 }
105 return false;
106}
107
108inline bool node::equals(const char* rhs, shared_memory_holder pMemory) {
109 std::string lhs;

Callers 4

mainMethod · 0.80
getMethod · 0.80
impl.hFile · 0.80
removeMethod · 0.80

Calls 1

NodeClass · 0.50

Tested by 1

mainMethod · 0.64