MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / PrintRawArrayTo

Function PrintRawArrayTo

cpp/test/include/gtest/gtest-printers.h:561–567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

559// the curly braces.
560template <typename T>
561void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
562 UniversalPrint(a[0], os);
563 for (size_t i = 1; i != count; i++) {
564 *os << ", ";
565 UniversalPrint(a[i], os);
566 }
567}
568
569// Overloads for ::string and ::std::string.
570#if GTEST_HAS_GLOBAL_STRING

Callers 1

UniversalPrintArrayMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected