MCPcopy Create free account
hub / github.com/RenderKit/embree / rangeToString

Function rangeToString

tutorials/external/catch.hpp:1492–1502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1490 namespace Detail {
1491 template<typename InputIterator>
1492 std::string rangeToString(InputIterator first, InputIterator last) {
1493 ReusableStringStream rss;
1494 rss << "{ ";
1495 if (first != last) {
1496 rss << ::Catch::Detail::stringify(*first);
1497 for (++first; first != last; ++first)
1498 rss << ", " << ::Catch::Detail::stringify(*first);
1499 }
1500 rss << " }";
1501 return rss.str();
1502 }
1503 }
1504
1505#ifdef __OBJC__

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 4

stringifyFunction · 0.85
beginFunction · 0.85
endFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected