MCPcopy Create free account
hub / github.com/bytedance/bolt / print

Method print

bolt/vector/VectorPrinter.cpp:70–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68 }
69
70 std::string print(vector_size_t index, const std::string& indent) const {
71 if (decoded_.isNullAt(index)) {
72 std::ostringstream out;
73 out << indent << "<null>" << std::endl;
74 return out.str();
75 }
76
77 return printNonNull(index, indent);
78 }
79
80 const DecodedVector& decoded() const {
81 return decoded_;

Callers 4

printNonNullMethod · 0.45
printNonNullMethod · 0.45
printNonNullMethod · 0.45
printVectorFunction · 0.45

Calls 2

strMethod · 0.80
isNullAtMethod · 0.45

Tested by

no test coverage detected