| 809 | /// separated by `sep`. |
| 810 | template <typename It, typename Sentinel> |
| 811 | auto 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`. |
nothing calls this directly
no test coverage detected