MCPcopy Create free account
hub / github.com/apache/arrow / ~EqualityComparable

Method ~EqualityComparable

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

Source from the content-addressed store, hash-verified

31class EqualityComparable {
32 public:
33 ~EqualityComparable() {
34 static_assert(
35 std::is_same<decltype(std::declval<const T>().Equals(std::declval<const T>())),
36 bool>::value,
37 "EqualityComparable depends on the method T::Equals(const T&) const");
38 }
39
40 template <typename... Extra>
41 bool Equals(const std::shared_ptr<T>& other, Extra&&... extra) const {

Callers

nothing calls this directly

Calls 1

EqualsMethod · 0.45

Tested by

no test coverage detected