MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / PrintRawArrayTo

Function PrintRawArrayTo

tests/gtest/gtest.h:8568–8574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8566// the curly braces.
8567template <typename T>
8568void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) {
8569 UniversalPrint(a[0], os);
8570 for (size_t i = 1; i != count; i++) {
8571 *os << ", ";
8572 UniversalPrint(a[i], os);
8573 }
8574}
8575
8576// Overloads for ::std::string.
8577GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os);

Callers 1

UniversalPrintArrayMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected