| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(C++26) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
template<bool Const> class/*iterator*/ | (since C++23) (exposition only*) | |
The return type ofchunk_view::begin, and ofchunk_view::end when the underlying viewV is acommon_range.
Present only ifV modelsforward_range.
The type/*iterator*/<true> is returned by the const-qualified overloads. The type/*iterator*/<false> is returned by the non-const-qualified overloads.
Contents |
| Member type | Definition |
Parent(private) | const chunk_view ifConst istrue, otherwisechunk_view.(exposition-only member type*) |
Base(private) | const V ifConst istrue, otherwiseV.(exposition-only member type*) |
iterator_category | std::input_iterator_tag |
iterator_concept |
|
value_type | decltype(views::take(ranges::subrange(current_, end_), n_));. |
difference_type | ranges::range_difference_t<Base> |
| Member name | Definition |
current_(private) | ranges::iterator_t<Base>, holds an iterator to the first element of current chunk in the underlying sequence (i.e. the begin of a chunk). (exposition-only member object*) |
end_(private) | ranges::sentinel_t<Base>, holds a sentinel to the end of the underlying sequence. (exposition-only member object*) |
n_(private) | ranges::range_difference_t<Base>, holds initial number of elements in the chunk (the last chunk can be smaller). (exposition-only member object*) |
missing_(private) | ranges::range_difference_t<Base>, usually equals toranges::advance(current_, n_, end_);. (exposition-only member object*) |
| constructs an iterator (public member function) | |
| returns an iterator to current element (public member function) | |
| accesses the element (public member function) | |
| accesses an element by index (public member function) | |
| advances or decrements the underlying iterator (public member function)[edit] |
| compares the underlying iterators (function) | |
(C++23) | performs iterator arithmetic (function) |
| This section is incomplete Reason: no example |
chunk_view::iterator for forward ranges [range.chunk.fwd.iter]