MCPcopy Create free account
hub / github.com/audeering/opensmile / rangeToString

Function rangeToString

progsrc/include/tests/catch2/catch.hpp:1833–1843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

convertMethod · 0.85
convertMethod · 0.85

Calls 2

stringifyFunction · 0.85
strMethod · 0.80

Tested by

no test coverage detected