Difference between revisions of "cpp/ranges/split view"
From cppreference.com
m (→Member functions: dsc expos mem fun) |
m (→Member functions: Oh! And then we may remove the "exposition only" duplicate text in the description field) |
||
Line 40: | Line 40: | ||
{{dsc inc | cpp/ranges/adaptor/dsc begin | split_view }} | {{dsc inc | cpp/ranges/adaptor/dsc begin | split_view }} | ||
{{dsc inc | cpp/ranges/adaptor/dsc end | split_view }} | {{dsc inc | cpp/ranges/adaptor/dsc end | split_view }} | ||
− | {{dsc expos mem fun | cpp/ranges/split_view/find_next | | + | {{dsc expos mem fun | cpp/ranges/split_view/find_next | searches for the next occurrence of the pattern | notes={{mark c++20}} }} |
{{cpp/ranges/view_interface/inherit|embedded=yes|data=invalid|back=invalid|size=invalid|operator[]=invalid}} | {{cpp/ranges/view_interface/inherit|embedded=yes|data=invalid|back=invalid|size=invalid|operator[]=invalid}} |
Revision as of 12:13, 30 July 2021
Defined in header <ranges>
|
||
template< ranges::forward_range V, ranges::forward_range Pattern > requires ranges::view<V> && ranges::view<Pattern> && |
(1) | (since C++20) |
namespace views { inline constexpr /*unspecified*/ split = /*unspecified*/; |
(2) | (since C++20) |
2) Ranges adaptor object. The expression views::split(e, p) is expression-equivalent to split_view(e, p) for any suitable subexpressions e and p.
split_view
models the concepts contiguous_range
, random_access_range
, bidirectional_range
, forward_range
, and common_range
when the underlying view
V
models respective concepts.
Contents |
Expression-equivalent
Expression e is expression-equivalent to expression f, if
- e and f have the same effects, and
- either both are constant subexpressions or else neither is a constant subexpression, and
- either both are potentially-throwing or else neither is potentially-throwing (i.e. noexcept(e) == noexcept(f)).
Data members
Typical implementations of split_view
hold three non-static data members:
- the underlying
view
of typeV
(shown here asbase_
for exposition only), and - the pattern (shown here as
pattern_
for exposition only) that is used as a delimiter to split the underlyingview
. - an object equivalent to std::optional<ranges::subrange<ranges::iterator_t<V>>> (shown here as
cached_begin_
for exposition only) that caches the result of a first call tobegin()
.
Member functions
constructs a split_view (public member function) | |
returns a copy of the underlying (adapted) view (public member function) | |
returns an iterator to the beginning (public member function) | |
returns an iterator or a sentinel to the end (public member function) | |
(C++20) |
searches for the next occurrence of the pattern (exposition-only member function*) |
Inherited from std::ranges::view_interface | |
returns whether the derived view is empty. Provided if it satisfies sized_range or forward_range . (public member function of std::ranges::view_interface<D> )
| |
(C++23) |
returns a constant iterator to the beginning of the range. (public member function of std::ranges::view_interface<D> )
|
(C++23) |
returns a sentinel for the constant iterator of the range. (public member function of std::ranges::view_interface<D> )
|
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> )
| |
returns the first element in the derived view. Provided if it satisfies forward_range . (public member function of std::ranges::view_interface<D> )
|
Nested classes
(C++20) |
the iterator type (public member class) |
(C++20) |
the sentinel type (public member class) |
Deduction guides
Notes
Example
A link to check the example: wandbox
Run this code
#include <iostream> #include <iomanip> #include <ranges> #include <string_view> int main() { constexpr std::string_view words{"Hello-_-C++-_-20-_-!"}; constexpr std::string_view delim{"-_-"}; for (const std::string_view word : std::views::split(words, delim)) { std::cout << std::quoted(word) << ' '; } }
Output:
"Hello" "C++" "20" "!"
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 range s(class template) (range adaptor object) |