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

Function PrintTo

cpp/src/arrow/compute/expression.cc:213–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213void PrintTo(const Expression& expr, std::ostream* os) {
214 *os << expr.ToString();
215 if (expr.IsBound()) {
216 *os << "[bound]";
217 }
218}
219
220bool Expression::Equals(const Expression& other) const {
221 if (Expression::Identical(*this, other)) return true;

Callers

nothing calls this directly

Calls 2

IsBoundMethod · 0.80
ToStringMethod · 0.45

Tested by

no test coverage detected