MCPcopy Create free account
hub / github.com/apache/arrow / Equals

Method Equals

cpp/src/arrow/util/compare.h:41–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39
40 template <typename... Extra>
41 bool Equals(const std::shared_ptr<T>& other, Extra&&... extra) const {
42 if (other == NULLPTR) {
43 return false;
44 }
45 return cast().Equals(*other, std::forward<Extra>(extra)...);
46 }
47
48 struct PtrsEqual {
49 bool operator()(const std::shared_ptr<T>& l, const std::shared_ptr<T>& r) const {

Callers 3

~EqualityComparableMethod · 0.45
operator()Method · 0.45
operator==Method · 0.45

Calls 1

castFunction · 0.50

Tested by

no test coverage detected