| Technical Specification | ||||
| Filesystem library(filesystem TS) | ||||
| Library fundamentals(library fundamentals TS) | ||||
| Library fundamentals 2(library fundamentals TS v2) | ||||
| Library fundamentals 3(library fundamentals TS v3) | ||||
| Extensions for parallelism(parallelism TS) | ||||
| Extensions for parallelism 2(parallelism TS v2) | ||||
| Extensions for concurrency(concurrency TS) | ||||
| Extensions for concurrency 2(concurrency TS v2) | ||||
| Concepts(concepts TS) | ||||
| Ranges(ranges TS) | ||||
| Reflection(reflection TS) | ||||
| Mathematical special functions(special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
| Iterator concepts | ||||||||||||
| Indirect callable concepts | ||||||||||||
| Common algorithm requirements | ||||||||||||
| Concept utilities | ||||||||||||
| Iterator utilities and operations | ||||||||||||
| ||||||||||||
| Iterator traits | ||||||||||||
| Iterator adaptors | ||||||||||||
| Stream iterators | ||||||||||||
Defined in header <experimental/ranges/iterator> | ||
namespace{ constexpr/* unspecified */ distance=/* unspecified */; | (ranges TS) (customization point object) | |
Call signature | ||
template< Iterator I, Sentinel<I> S> constexpr ranges::difference_type_t<I> distance( I first, S last); | (1) | |
template< Range R> constexpr ranges::difference_type_t<ranges::iterator_t<R>> distance( R&& r); | (2) | |
template< SizedRange R> constexpr ranges::difference_type_t<ranges::iterator_t<R>> distance( R&& r); | (3) | |
Returns the distance betweenfirst andlast, or between the beginning and the end of the ranger.
[first, last) does not denote a range, thenI andS must be the same type and must modelSizedSentinel, and[last, first) must denote a range. Otherwise, the behavior is undefined.Instantiating overloads(2,3) may be ill-formed if the header<experimental/ranges/range> is not included before the point of instantiation.
Contents |
The nameranges::distance denotes acustomization point object, which is afunction object of aliteralSemiregular class type (denoted, for exposition purposes, asDistanceT). All instances ofDistanceT are equal. Thus,ranges::distance can be copied freely and its copies can be used interchangeably.
Given a set of typesArgs..., ifstd::declval<Args>()... meet the requirements for arguments toranges::distance above,DistanceT will satisfyranges::Invocable<const DistanceT, Args...>. Otherwise, no function call operator ofDistanceT participates in overload resolution.
In every translation unit in whichranges::distance is defined, it refers to the same instance of the customization point object. (This means that it can be used freely in things like inline functions and function templates without violating theone-definition rule.)
The distance betweenfirst andlast, or between the beginning and the end of the ranger.
| This section is incomplete Reason: no example |
| returns the distance between two iterators (function template)[edit] | |
| advances an iterator by given distance (function template)[edit] | |
| increment an iterator (function template)[edit] | |
| decrement an iterator (function template)[edit] | |
| obtains the size of a range whose size can be calculated in constant time (customization point object)[edit] |