std::ranges::views::lazy_split, std::ranges::lazy_split_view
From cppreference.com
| Defined in header <ranges>
|
||
| template< ranges::input_range V, ranges::forward_range Pattern > requires ranges::view<V> && ranges::view<Pattern> && |
(1) | (since C++20) |
| namespace views { inline constexpr /*unspecified*/ lazy_split = /*unspecified*/; |
(2) | (since C++20) |
1)
lazy_split_view takes a view and a delimiter, and splits the view into subranges on the delimiter.
Two major scenarios are supported:
- The view is a
input_range, the delimiter is a single element (wrapped in asingle_view). - The view is a
forward_range, the delimiter is aviewof elements.
sized_range, Pattern::size() is a constant expression, and the value of Pattern::size() is less than or equal to 1. Notably, empty_view and single_view satisfy this concept.2) A range adaptor object. The expression views::lazy_split(e, f) is expression-equivalent to lazy_split_view(e, f).
Contents |
[edit] Member functions
| (C++20) |
constructs a lazy_split_view (public member function) |
| (C++20) |
returns a copy of the underlying (adapted) view (public member function) |
| (C++20) |
returns an iterator to the beginning (public member function) |
| (C++20) |
returns an iterator or a sentinel to the end (public member function) |
Inherited from std::ranges::view_interface | |
| (C++20) |
Returns whether the derived view is empty. Provided if it satisfies forward_range. (public member function of std::ranges::view_interface<D>)
|
| (C++20) |
Returns whether the derived view is not empty. Provided if ranges::empty is applicable to it. (public member function of std::ranges::view_interface<D>)
|
| (C++20) |
Returns the first element in the derived view. Provided if it satisfies forward_range. (public member function of std::ranges::view_interface<D>)
|
[edit] Nested classes
| the iterator type (public member class) | |
| the iterator type of the inner range (public member class) |
[edit] Deduction guides
[edit] Example
Run this code
#include <algorithm> #include <iostream> #include <ranges> #include <string_view> // P2210R2: a temporary patch until online g++ >= 12 #define lazy_split_view split_view #define lazy_split split auto print = [](auto const& view) { // `view` is a std::views::lazy_split_view::/*outer-iterator*/::value_type for (std::cout << "{ "; const auto element : view) std::cout << element << ' '; std::cout << "} "; }; int main() { constexpr static auto source = { 0, 1,0, 2,3,0, 4,5,6,0, 7,8,9 }; constexpr int delimiter {0}; constexpr std::ranges::lazy_split_view lazy_split_view {source, delimiter}; std::cout << "splits[" << std::ranges::distance(lazy_split_view) << "]: "; for (auto const& lazy_split: lazy_split_view) print(lazy_split); constexpr std::string_view hello { "Hello C++ 20 !" }; std::cout << "\n" "substrings: "; std::ranges::for_each(hello | std::views::lazy_split(' '), print); constexpr std::string_view text { "Hello-+-C++-+-20-+-!" }; constexpr std::string_view delim { "-+-" }; std::cout << "\n" "substrings: "; std::ranges::for_each(text | std::views::lazy_split(delim), print); }
Output:
splits[5]: { } { 1 } { 2 3 } { 4 5 6 } { 7 8 9 }
substrings: { H e l l o } { C + + } { 2 0 } { ! }
substrings: { H e l l o } { C + + } { 2 0 } { ! }[edit] See also
a view over the subranges obtained from splitting another view using a delimiter (class template) (range adaptor object) | |
| (C++20) |
a view consisting of the sequence obtained from flattening a view of ranges (class template) (range adaptor object) |

