MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / rangeToString

Function rangeToString

Bcore/src/main/cpp/Dobby/tests/catch.hpp:946–956  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

944
945namespace Detail {
946template <typename InputIterator> std::string rangeToString(InputIterator first, InputIterator last) {
947 ReusableStringStream rss;
948 rss << "{ ";
949 if (first != last) {
950 rss << ::Catch::Detail::stringify(*first);
951 for (++first; first != last; ++first)
952 rss << ", " << ::Catch::Detail::stringify(*first);
953 }
954 rss << " }";
955 return rss.str();
956}
957} // namespace Detail
958
959#ifdef __OBJC__

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 2

stringifyFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected