| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
| Member functions | ||||
(C++26) | ||||
| Deduction guides | ||||
| Nested classes | ||||
| Iterator | ||||
enumerate_view::iterator::operator[] | ||||
| Sentinel | ||||
constexprauto operator[]( difference_type n)const requiresranges::random_access_range<Base> | (since C++23) | |
Returns an element at specified relative location.Equivalent to:return reference-type(pos_ + n, current_[n]);.
Contents |
| n | - | position relative to current location |
The element at displacementn relative to the current location.
| This section is incomplete Reason: no example |
(C++23) | accesses the element (public member function) |