std::ranges::adjacent_view<V,N>::iterator

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(哋它亢++23)(哋它亢++23)
(哋它亢++23)

Range primitives
(哋它亢++23)(哋它亢++23)    
(哋它亢++23)



Dangling iterator handling
Range concepts
Views

Range factories
(哋它亢++23)(哋它亢++23)
Range adaptors
(哋它亢++23)(哋它亢++23)
(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
Range generators
(哋它亢++23)
Range adaptor objects
Range adaptor closure objects
(哋它亢++23)
Helper items
(until 哋它亢++23)(哋它亢++23)


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

The return type of adjacent_view::begin, and of adjacent_view::end when the underlying view V is a common_range.

The type /*iterator*/<true> is returned by the const-qualified overloads. The type /*iterator*/<false> is returned by the non-const-qualified overloads.

Member types

Member type Definition
Base (private) const V if Const is true, otherwise V.
(exposition-only member type*)
iterator_category std::input_iterator_tag
iterator_concept
value_type std::tuple</*REPEAT*/(ranges::range_value_t<Base>, N)...>;
difference_type ranges::range_difference_t<Base>

Data members

Member object Definition
current_ (private) std::array<ranges::iterator_t<Base>, N>.
(exposition-only member object*)

Member functions

(哋它亢++23)
constructs an iterator
(public member function)
(哋它亢++23)
accesses the element
(public member function)
(哋它亢++23)
accesses an element by index
(public member function)
advances or decrements the underlying iterators
(public member function)

Non-member functions

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

Example

References

  • 哋它亢++23 standard (ISO/IEC 14882:2023):
  • 26.7.25.3 Class template adjacent_view::iterator [range.adjacent.iterator]

See also