MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Join

Function Join

tensorflow/lite/experimental/ruy/test.h:131–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129
130template <typename ContainerType>
131std::string Join(const ContainerType& container) {
132 if (container.empty()) {
133 return "<empty>";
134 }
135 std::ostringstream stream;
136 auto it = container.begin();
137 stream << *it++;
138 for (; it != container.end(); ++it) {
139 stream << ", ";
140 stream << *it;
141 }
142 return stream.str();
143}
144
145struct LogCoveredPathsOnDestruction final {
146 ~LogCoveredPathsOnDestruction() {

Callers 2

VerifyTestResultsMethod · 0.70

Calls 3

emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected