std::ranges::join_with_view<V,Pattern>::iterator

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


 
 
template< bool Const >
class /*iterator*/
(since C++23)
(exposition only*)

The return type of join_with_view::begin, and of join_with_view::end when both the outer range V and the inner range ranges::range_reference_t<V> satisfy common_range and the parent join_with_view is a forward_range.

If either V or Pattern is not a simple view, Const is true for iterators returned from the const overloads, and false otherwise. If V and Pattern are simple views, Const is true if and only if ranges::range_reference_t<V> is a reference.

Member types

Member type Definition
Parent const join_view<V> if Const is true, otherwise join_view<V>
(exposition-only member type*)
Base const V if Const is true, otherwise V
(exposition-only member type*)
InnerBase ranges::range_reference_t<Base>
(exposition only*)
PatternBase const Pattern if Const is true, otherwise Pattern
(exposition-only member type*)
iterator_concept
iterator_category

Defined only if iterator::iterator_concept (see above) denotes std::forward_iterator_tag. Let OUTERC be std::iterator_traits<ranges::iterator_t<Base>>::iterator_category, INNERC be std::iterator_traits<ranges::iterator_t<InnerBase>>::iterator_category, and PATTERNC be std::iterator_traits<ranges::iterator_t<PatternBase>>::iterator_category.

value_type

std::common_type_t<ranges::range_value_t<InnerBase>,
                   ranges::range_value_t<PatternBase>>

difference_type

std::common_type_t<ranges::range_difference_t<Base>,
                   ranges::range_difference_t<InnerBase>,
                   ranges::range_difference_t<PatternBase>>

Member functions

constructs an iterator
(public member function)
(C++23)
accesses the element
(public member function)
advances or decrements the underlying iterator
(public member function)

Non-member functions

compares the underlying iterators
(function)
(C++23)
casts the result of dereferencing the underlying iterator to its associated rvalue reference type
(function)
(C++23)
swaps the objects pointed to by two underlying iterators
(function)