std::ranges::concat_view<Views...>::iterator<Const>::operator[]

From cppreference.com
< cpp‎ | ranges‎ | concat view‎ | iterator
 
 
Ranges library
Range adaptors
 
 
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.

Parameters

pos - position relative to current location

Return value

*((*this) + pos)

Example

See also

(C++26)
accesses the element
(public member function)