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

Method Print

cpp/src/arrow/util/print_internal.h:32–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30template <typename OStream, typename Tuple, size_t N>
31struct TuplePrinter {
32 static void Print(OStream* os, const Tuple& t) {
33 TuplePrinter<OStream, Tuple, N - 1>::Print(os, t);
34 *os << std::get<N - 1>(t);
35 }
36};
37
38template <typename OStream, typename Tuple>

Callers

nothing calls this directly

Calls 1

PrintFunction · 0.85

Tested by

no test coverage detected