MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / equals

Function equals

native/Base.h:86–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85 template<typename T>
86 bool equals(const std::shared_ptr<T> &left, const std::shared_ptr<T> &right) {
87 if (nullptr == left || nullptr == right) {
88 return false;
89 }
90 return *(left.get()) == *(right.get());
91 }
92
93 // for std::sort
94 template<typename T>

Callers 4

buildFromElementMethod · 0.85
containsTargetMethod · 0.85
buildBoundingBoxMethod · 0.85
onAddNodeMethod · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected