GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::ranges::transform_view::begin(3) C++ Standard Libary std::ranges::transform_view::begin(3)

std::ranges::transform_view::begin - std::ranges::transform_view::begin


constexpr /*iterator*/<false> begin(); (1) (since C++20)
constexpr /*iterator*/<true> begin() const


requires ranges::range<const V> && (2) (since C++20)


std::regular_invocable<const F&, ranges::range_reference_t<const
V>>;


Returns an iterator to the first element of the transform_view.


1) Equivalent to return /*iterator*/<false>{*this, ranges::begin(base_)};, where
base_ is the underlying view.
2) Equivalent to return /*iterator*/<true>{*this, ranges::begin(base_)};, where
base_ is the underlying view.


(none)


Iterator to the first element.


This section is incomplete
Reason: no example


end returns an iterator or a sentinel to the end
(C++20) (public member function)
ranges::begin returns an iterator to the beginning of a range
(C++20) (customization point object)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.