std::ranges::lazy_split_view<V,Pattern>::lazy_split_view
From cppreference.com
< cpp | ranges | lazy split view
lazy_split_view() requires std::default_initializable<V> && |
(1) | (since C++20) |
constexpr lazy_split_view( V base, Pattern pattern ); |
(2) | (since C++20) |
template< ranges::input_range R > requires std::constructible_from<V, views::all_t<R>> && |
(3) | (since C++20) |
Constructs a lazy_split_view
.
1) Default constructor. Value-initializes the underlying view and the delimiter.
2) Initializes the underlying view with std::move(base) and the delimiter with std::move(pattern).
3) Initializes the underlying view with views::all(std::forward<R>(r)) and the delimiter with ranges::single_view{std::move(e)}.
Parameters
base | - | the underlying view (to be split) |
pattern | - | view to be used as the delimiter |
e | - | element to be used as the delimiter |
Example
This section is incomplete Reason: no example |