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::experimental::ranges::Range(3) C++ Standard Libary std::experimental::ranges::Range(3)

std::experimental::ranges::Range - std::experimental::ranges::Range


Defined in header <experimental/ranges/range>
template < class T >


concept bool Range =
requires(T&& t) { (ranges TS)
ranges::begin(t); /* not necessarily equality-preserving (see below) */
ranges::end(t);


};


Given an lvalue t of type std::remove_reference_t<T>, Range<T> is satisfied only if


* [ranges::begin(t), ranges::end(t)) denotes a range; and
* both ranges::begin(t) and ranges::end(t) are amortized constant time and
non-modifying.
* If ranges::iterator_t<T> satisfies ForwardIterator, ranges::begin(t) is equality
preserving.

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.