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

Function rangeToString

external/catch.hpp:1827–1837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 2

stringifyFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected