MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / rangeToString

Function rangeToString

unittests/catch.hpp:988–998  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

986 namespace Detail {
987 template<typename InputIterator>
988 std::string rangeToString(InputIterator first, InputIterator last) {
989 ReusableStringStream rss;
990 rss << "{ ";
991 if (first != last) {
992 rss << ::Catch::Detail::stringify(*first);
993 for (++first; first != last; ++first)
994 rss << ", " << ::Catch::Detail::stringify(*first);
995 }
996 rss << " }";
997 return rss.str();
998 }
999 }
1000
1001#ifdef __OBJC__

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 2

stringifyFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected