std::ranges::transform_view<V,F>::begin
From cppreference.com
< cpp | ranges | transform view
constexpr /*iterator*/<false> begin(); | (1) | (since C++20) |
constexpr /*iterator*/<true> begin() const requires ranges::range<const V> && | (2) | (since C++20) |
Returns an iterator to the first element of the transform_view
.
1) Equivalent to return
iterator
<false>{*this, ranges::begin(base_
)};.2) Equivalent to return
iterator
<true>{*this, ranges::begin(base_
)};.[edit] Return value
Iterator to the first element.
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
returns an iterator or a sentinel to the end (public member function) | |
(C++20) | returns an iterator to the beginning of a range (customization point object) |