We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<ranges>
1 parent 37525db commit de46d63Copy full SHA for de46d63
libcxx/include/ranges
@@ -286,13 +286,10 @@ namespace std::ranges {
286
class join_view;
287
288
// [range.join.with], join with view
289
- template<class R, class P>
290
- concept compatible-joinable-ranges = see below; // exposition only
291
-
292
template<input_range V, forward_range Pattern>
293
requires view<V> && input_range<range_reference_t<V>>
294
&& view<Pattern>
295
- && compatible-joinable-ranges<range_reference_t<V>, Pattern>
+ && concatable<range_reference_t<V>, Pattern>
296
class join_with_view; // since C++23
297
298
namespace views { inline constexpr unspecified join_with = unspecified; } // since C++23
0 commit comments