Namespaces
Variants

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

From cppreference.net
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.

Contents

Parameters

pos - position relative to current location

Return value

* ( ( * this ) + pos )

Example

See also

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