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

Method Equals

cpp/src/arrow/compute/kernel.cc:317–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

315 }
316
317 bool Equals(const TypeMatcher& other) const override {
318 if (this == &other) {
319 return true;
320 }
321 const auto* casted = dynamic_cast<const RunEndEncodedMatcher*>(&other);
322 return casted != nullptr && value_type_matcher->Equals(*casted->value_type_matcher) &&
323 run_end_type_matcher->Equals(*casted->run_end_type_matcher);
324 }
325
326 std::string ToString() const override {
327 return "run_end_encoded(" + run_end_type_matcher->ToString() + ", " +

Callers

nothing calls this directly

Calls 1

EqualsMethod · 0.45

Tested by

no test coverage detected