std::ranges::join_with_view<V,Pattern>::join_with_view
来自cppreference.com
< cpp | ranges | join with view
join_with_view() requires std::default_initializable<V> && |
(1) | (C++23 起) |
constexpr explicit join_with_view( V base, Pattern pattern ); |
(2) | (C++23 起) |
template< ranges::input_range R > requires std::constructible_from<V, views::all_t<R>> && |
(3) | (C++23 起) |
构造 join_with_view
,初始化底层视图 base_
和存储的模式 pattern_
。
重载 | 数据成员 | |
---|---|---|
base_
|
pattern_
| |
(1) | 值初始化 | 值初始化 |
(2) | 以 std::move(base) 初始化 | 以 std::move(pattern) 初始化 |
(3) | 以 views::all(std::forward<R>(r)) 初始化 | 以 views::single(std::move(e)) 初始化 |
参数
base | - | 要拉平的范围的视图 |
pattern | - | 用作分隔符的视图 |
e | - | 用作分隔符的元素 |
示例
本节未完成 原因:暂无示例 |