MCPcopy Create free account
hub / github.com/fmtlib/fmt / join

Function join

include/fmt/ranges.h:811–813  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

809/// separated by `sep`.
810template <typename It, typename Sentinel>
811auto join(It begin, Sentinel end, string_view sep) -> join_view<It, Sentinel> {
812 return {std::move(begin), end, sep};
813}
814
815/**
816 * Returns a view that formats `range` with elements separated by `sep`.

Callers

nothing calls this directly

Calls 4

range_beginFunction · 0.85
range_endFunction · 0.85
beginFunction · 0.70
endFunction · 0.70

Tested by

no test coverage detected