Namespaces
Variants
Views
Actions

Extensions for ranges

From cppreference.com
< cpp‎ | experimental
Revision as of 18:22, 2 December 2016 by Cubbi (Talk | contribs)

The C++ Extensions for Ranges, ISO/IEC TS 21425:XXXX, specifies one modification to the core language and defines new components for the C++ standard library listed on this page.

The Ranges TS is based on the C++14 standard as modified by the Concepts TS.

Contents

Core language changes

The Ranges TS modifies the specification of the range-based for loop to permit differently typed begin and end iterators. This change permits the use of sentinels and is also present in C++17.

Concepts

Defined in namespace std::experimental::ranges
Core language concepts

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)
Comparison concepts

(concept)

(concept)

(concept)
Object concepts

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)
Callable concepts

(concept)

(concept)

(concept)

(concept)

General utilities

Utility components
Defined in namespace std::experimental::ranges

(customization point object)

(function template)
Function objects
Defined in namespace std::experimental::ranges

(function template)

(class template)

(class template)

(class template)

(class template)

(class template)

(class template)

(class template)
Metaprogramming and type traits
Defined in header <type_traits>
Defined in namespace std

(class template)

(class template)

(class template)
Tagged pairs and tuples
Defined in namespace std::experimental::ranges

(concept)

(concept)

(class template)

(alias template)

(function template)
Defined in header <experimental/ranges/tuple>

(alias template)

(function template)

Iterators

Iterator concepts
Defined in namespace std::experimental::ranges

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(variable template)

(concept)

(concept)

(concept)

(concept)

(concept)
Indirect callable concepts

(concept)

(concept)

(concept)

(concept)

(class template)

(class template)
Common algorithm requirements

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)
Iterator primitives
Iterator utilities
Defined in namespace std::experimental::ranges

(customization point object)

(customization point object)
Iterator traits
Defined in namespace std::experimental::ranges

(class template)

(class template)

(class template)

(alias template)

(alias template)

(alias template)

(alias template)

(class template)

(class template)
Iterator category tags
Defined in namespace std::experimental::ranges
empty class types used to indicate iterator categories
(class)
std::iterator_traits specializations
Defined in namespace std
Specializes std::iterator_traits for ranges TS iterators
(class template specialization)
Iterator operations
Defined in namespace std::experimental::ranges

(function template)

(function template)

(function template)

(function template)
Iterator adaptors
Defined in namespace std::experimental::ranges

(class template)

(class template)

(class template)

(class template)

(class template)

(class template)

(class template)

(class template)

(class)

(class template)

(alias template)

(class)
Stream iterators
Defined in namespace std::experimental::ranges

(class template)

(class template)

(class template)

(class template)
Range concepts
Defined in namespace std::experimental::ranges

(alias template)

(alias template)

(concept)

(concept)

(variable template)

(class)

(class template)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)

(concept)
Range access
Defined in namespace std::experimental::ranges

(customization point object)

(customization point object)

(customization point object)

(customization point object)

(customization point object)

(customization point object)

(customization point object)

(customization point object)
Range primitives
Defined in namespace std::experimental::ranges

(function template)

(customization point object)

(customization point object)

(customization point object)

(customization point object)

Algorithms

Tag specifiers
Defined in namespace std::experimental::ranges::tag
Tag specifiers for use with ranges::tagged
(class)
Non-modifying sequence operations
Defined in namespace std::experimental::ranges
checks if a predicate is true for all, any or none of the elements in a range
(function template)
applies a function to a range of elements
(function template)
returns the number of elements satisfying specific criteria
(function template)
finds the first position where two ranges differ
(function template)
determines if two sets of elements are the same
(function template)
finds the first element satisfying specific criteria
(function template)
finds the last sequence of elements in a certain range
(function template)
searches for any one of a set of elements
(function template)
finds the first two adjacent items that are equal (or satisfy a given predicate)
(function template)
searches for a range of elements
(function template)
searches for a number consecutive copies of an element in a range
(function template)
Modifying sequence operations
Defined in namespace std::experimental::ranges
copies a range of elements to a new location
(function template)
copies a number of elements to a new location
(function template)
copies a range of elements in backwards order
(function template)
moves a range of elements to a new location
(function template)
moves a range of elements to a new location in backwards order
(function template)
assigns a range of elements a certain value
(function template)
assigns a value to a number of elements
(function template)
applies a function to a range of elements
(function template)
saves the result of a function in a range
(function template)
saves the result of N applications of a function
(function template)
removes elements satisfying specific criteria
(function template)
copies a range of elements omitting those that satisfy specific criteria
(function template)
replaces all values satisfying specific criteria with another value
(function template)
copies a range, replacing elements satisfying specific criteria with another value
(function template)
swaps two ranges of elements
(function template)
reverses the order of elements in a range
(function template)
creates a copy of a range that is reversed
(function template)
rotates the order of elements in a range
(function template)
copies and rotate a range of elements
(function template)
randomly re-orders elements in a range
(function template)
removes consecutive duplicate elements in a range
(function template)
creates a copy of some range of elements that contains no consecutive duplicates
(function template)
Partitioning operations
Defined in namespace std::experimental::ranges
determines if the range is partitioned by the given predicate
(function template)
divides a range of elements into two groups
(function template)
copies a range dividing the elements into two groups
(function template)
divides elements into two groups while preserving their relative order
(function template)
locates the partition point of a partitioned range
(function template)
Sorting operations
Defined in namespace std::experimental::ranges
checks whether a range is sorted into ascending order
(function template)
finds the largest sorted subrange
(function template)
sorts a range into ascending order
(function template)
sorts the first N elements of a range
(function template)
copies and partially sorts a range of elements
(function template)
sorts a range of elements while preserving order between equal elements
(function template)
partially sorts the given range making sure that it is partitioned by the given element
(function template)
Binary search operations (on sorted ranges)
Defined in namespace std::experimental::ranges
returns an iterator to the first element not less than the given value
(function template)
returns an iterator to the first element greater than a certain value
(function template)
determines if an element exists in a certain range
(function template)
returns range of elements matching a specific key
(function template)
Set operations (on sorted ranges)
Defined in namespace std::experimental::ranges
merges two sorted ranges
(function template)
merges two ordered ranges in-place
(function template)
returns true if one set is a subset of another
(function template)
computes the difference between two sets
(function template)
computes the intersection of two sets
(function template)
computes the symmetric difference between two sets
(function template)
computes the union of two sets
(function template)
Heap operations
Defined in namespace std::experimental::ranges
checks if the given range is a max heap
(function template)
finds the largest subrange that is a max heap
(function template)
creates a max heap out of a range of elements
(function template)
adds an element to a max heap
(function template)
removes the largest element from a max heap
(function template)
turns a max heap into a range of elements sorted in ascending order
(function template)
Minimum/maximum operations
Defined in namespace std::experimental::ranges
returns the greater of the given values
(function template)
returns the largest element in a range
(function template)
returns the smaller of the given values
(function template)
returns the smallest element in a range
(function template)
returns the smaller and larger of two elements
(function template)
returns the smallest and the largest elements in a range
(function template)
returns true if one range is lexicographically less than another
(function template)
determines if a sequence is a permutation of another sequence
(function template)
generates the next greater lexicographic permutation of a range of elements
(function template)
generates the next smaller lexicographic permutation of a range of elements
(function template)

Random number generator concept

Defined in header <experimental/ranges/random>
Defined in namespace std::experimental::ranges

(concept)