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

Method ToString

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

Source from the content-addressed store, hash-verified

91 bool Matches(const DataType& type) const override { return type.id() == accepted_id_; }
92
93 std::string ToString() const override {
94 std::stringstream ss;
95 ss << "Type::" << ::arrow::internal::ToString(accepted_id_);
96 return ss.str();
97 }
98
99 bool Equals(const TypeMatcher& other) const override {
100 if (this == &other) {

Callers

nothing calls this directly

Calls 2

strMethod · 0.80
ToStringFunction · 0.50

Tested by

no test coverage detected