std::ranges::chunk_view::inner-iterator::inner-iterator -
std::ranges::chunk_view::inner-iterator::inner-iterator
/*inner-iterator*/( /*inner-iterator*/&& other ) =
default; (1) (since C++23)
private: (2) (exposition only*)
constexpr explicit /*inner-iterator*/( chunk_view& parent );
Construct an iterator.
1) A move constructor which move-initializes the underlying pointer parent_
with
other.parent_.
2) A private constructor which is used by chunk_view::begin. This constructor
is not
accessible to users. Initializes parent_ with std::addressof(parent).
other - an iterator
parent - the enclosing ranges::chunk_view object
This section is incomplete
Reason: no example
operator= move assigns another iterator
(C++23) (public member function)