MCPcopy Create free account
hub / github.com/Kitware/CMake / Join

Method Join

Source/cmList.h:1216–1223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1214
1215 template <typename Range>
1216 static std::string Join(Range const& r, cm::string_view glue)
1217 {
1218 if (cm::size(r) == 0) {
1219 return std::string{};
1220 }
1221
1222 return cmList::Join(std::begin(r), std::end(r), glue);
1223 }
1224 template <typename InputIterator>
1225 static std::string Join(InputIterator first, InputIterator last,
1226 cm::string_view glue)

Callers 1

Calls 1

ToStringFunction · 0.70

Tested by

no test coverage detected