std::ranges::concat_view<Views...>::iterator::operator[] - cppreference.com (original) (raw)

| constexpr decltype(auto) operator[]( difference_type pos ) const requires /*concat-is-random-access*/<Const, Views...>; | | (since C++26) | | ----------------------------------------------------------------------------------------------------------------------------- | | ------------- |

Returns a reference to an element at specified relative location.

[edit] Parameters

pos - position relative to current location

[edit] Return value

*((*this) + pos)

[edit] Example

[edit] See also

| | accesses the element (public member function) | | ------------------------------------------------ |