MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / rangeToString

Function rangeToString

extern/Catch2/catch.hpp:1829–1839  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1827 namespace Detail {
1828 template<typename InputIterator, typename Sentinel = InputIterator>
1829 std::string rangeToString(InputIterator first, Sentinel last) {
1830 ReusableStringStream rss;
1831 rss << "{ ";
1832 if (first != last) {
1833 rss << ::Catch::Detail::stringify(*first);
1834 for (++first; first != last; ++first)
1835 rss << ", " << ::Catch::Detail::stringify(*first);
1836 }
1837 rss << " }";
1838 return rss.str();
1839 }
1840 }
1841
1842#ifdef __OBJC__

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 4

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

Tested by

no test coverage detected