MCPcopy Create free account
hub / github.com/Predelnik/DSpellCheck / rangeToString

Function rangeToString

deps/Catch/catch.hpp:1836–1846  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1834 namespace Detail {
1835 template<typename InputIterator, typename Sentinel = InputIterator>
1836 std::string rangeToString(InputIterator first, Sentinel last) {
1837 ReusableStringStream rss;
1838 rss << "{ ";
1839 if (first != last) {
1840 rss << ::Catch::Detail::stringify(*first);
1841 for (++first; first != last; ++first)
1842 rss << ", " << ::Catch::Detail::stringify(*first);
1843 }
1844 rss << " }";
1845 return rss.str();
1846 }
1847 }
1848
1849#ifdef __OBJC__

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 4

stringifyFunction · 0.85
beginFunction · 0.85
endFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected