std::ranges::views::join, std::ranges::join_view
From cppreference.com
Defined in header <ranges>
|
||
template< ranges::input_range V > requires ranges::view<V> && ranges::input_range<ranges::range_reference_t<V>> && |
(1) | (since C++20) |
namespace views { inline constexpr /* unspecified */ join = /* unspecified */; |
(2) | (since C++20) |
1) A range adaptor that represents
view
consisting of the sequence obtained from flattening a view of ranges.2) Range adaptor object. The expression views::join(E) is expression-equivalent to join_view{E} for any suitable subexpressions E.
join_view models the concepts random_access_range
, bidirectional_range
, forward_range
, input_range
, common_range
, and sized_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)).
Member functions
constructs a join_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) |
Deduction guides
Nested classes
the iterator type (public member class) | |
the sentinel type (public member class) |
Example
Run this code
#include <iostream> #include <ranges> #include <string_view> #include <vector> int main() { using namespace std::literals; const auto bits = { "https:"sv, "//"sv, "cppreference"sv, "."sv, "com"sv }; for (char const c : bits | std::views::join) std::cout << c; std::cout << '\n'; const std::vector<std::vector<int>> v{ {1,2}, {3,4,5}, {6}, {7,8,9} }; auto jv = std::ranges::join_view(v); for (int const e : jv) std::cout << e << ' '; std::cout << '\n'; }
Output:
https://cppreference.com 1 2 3 4 5 6 7 8 9
See also
a view over the subranges obtained from splitting another view using a delimiter(class template) (range adaptor object) |