std::ranges::transform_view<V,F>::iterator<Const>::operator[]
From cppreference.com
< cpp | ranges | transform view | iterator
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
std::ranges::transform_view
Member functions | ||||
Deduction guides | ||||
Iterator | ||||
transform_view::iterator::operator[] | ||||
Sentinel | ||||
constexpr decltype(
auto
) operator[
]
( difference_type n )
const
requires ranges::random_access_range <Base> ; |
(since C++20) | |
Returns the element at specified relative location, after transformation.
Effectively returns
std::invoke
(
*parent_-
>fun_, current_[n]
)
, where *parent_->fun_ is the transformation function stored in the parent transform_view
, and current_
is the underlying iterator into V
Parameters
n | - | position relative to current location. |
Return value
the transformed element
Example
This section is incomplete Reason: no example |