MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / PrintRawArrayTo

Function PrintRawArrayTo

rtpose_wrapper/src/gtest/gtest.h:9632–9638  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9630// the curly braces.
9631template <typename T>
9632void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
9633 UniversalPrint(a[0], os);
9634 for (size_t i = 1; i != count; i++) {
9635 *os << ", ";
9636 UniversalPrint(a[i], os);
9637 }
9638}
9639
9640// Overloads for ::string and ::std::string.
9641#if GTEST_HAS_GLOBAL_STRING

Callers 1

UniversalPrintArrayFunction · 0.85

Calls 1

UniversalPrintFunction · 0.85

Tested by

no test coverage detected