std::ranges::transform_view<V,F>::begin

Returns an iterator to the first element of the transform_view.

# Declarations

constexpr /*iterator*/<false> begin();

(since C++20)

constexpr /*iterator*/<true> begin() const
requires ranges::range<const V> &&
std::regular_invocable<const F&, ranges::range_reference_t<const V>>;

(since C++20)

# Return value

Iterator to the first element.

# Example

This section is incompleteReason: no example

# See also