MCPcopy Create free account
hub / github.com/apache/qpid-proton / print

Function print

cpp/examples/encode_decode.cpp:243–251  ·  view source on GitHub ↗

Print a value, for example purposes. Normal code can use operator<<

Source from the content-addressed store, hash-verified

241
242// Print a value, for example purposes. Normal code can use operator<<
243void print(proton::value& v) {
244 proton::codec::decoder d(v);
245 d.rewind();
246 while (d.more()) {
247 print_next(d);
248 if (d.more()) std::cout << ", ";
249 }
250 std::cout << std::endl;
251}

Callers 15

mainFunction · 0.85
on_connection_errorMethod · 0.85
startMethod · 0.85
waitMethod · 0.85
run_testFunction · 0.85
runthroughFunction · 0.85
mainFunction · 0.85
conf.pyFile · 0.85
on_messageMethod · 0.85
on_messageMethod · 0.85
on_acceptedMethod · 0.85
on_acceptedMethod · 0.85

Calls 3

print_nextFunction · 0.85
rewindMethod · 0.45
moreMethod · 0.45

Tested by 1

on_connection_errorMethod · 0.68