| 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 |
| Non-modifying sequence operations | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
| Modifying sequence operations | ||||||||||||||||||||||||||||
| Partitioning operations | ||||||||||||||||||||||||||||
| Sorting operations | ||||||||||||||||||||||||||||
| Binary search operations | ||||||||||||||||||||||||||||
| Set operations (on sorted ranges) | ||||||||||||||||||||||||||||
| Heap operations | ||||||||||||||||||||||||||||
| Minimum/maximum operations | ||||||||||||||||||||||||||||
| Permutations | ||||||||||||||||||||||||||||
Defined in header <experimental/ranges/algorithm> | ||
template< InputIterator I, Sentinel<I> S,class Proj=ranges::identity, IndirectUnaryInvocable<projected<I, Proj>> Fun> | (1) | (ranges TS) |
template< InputRange R,class Proj=ranges::identity, IndirectUnaryInvocable<projected<ranges::iterator_t<R>, Proj>> Fun> | (2) | (ranges TS) |
[first, last) (i.e.,ranges::invoke(f,ranges::invoke(proj,*i))), in order.For both overloads, if the iterator type is mutable,f may modify the elements of the range through the dereferenced iterator. Iff returns a result, the result is ignored.
Unlike the rest of the algorithms, for_each is not allowed to make copies of the elements in the sequence even if they are trivially copyable.
Unlikestd::for_each (which requires onlyMoveConstructible), these functions requireFun to modelCopyConstructible.
Notwithstanding the declarations depicted above, the actual number and order of template parameters for algorithm declarations is unspecified. Thus, if explicit template arguments are used when calling an algorithm, the program is probably non-portable.
Contents |
| first, last | - | the range to apply the function to |
| r | - | the range to apply the function to |
| f | - | callable object to be applied to each projected element in the range |
| proj | - | projection to apply to the elements |
Atagged_pair object containing the following two members:
tag::in, is the past-the-end iterator of the source range (that is, an iterator of typeI that compares equal to the sentinellast).tag::fun, is initialized fromstd::move(f) (after all applications of the function object).Exactlylast -first applications off andproj.
template<InputIterator I, Sentinel<I> S,class Proj=ranges::identity, IndirectUnaryInvocable<ranges::projected<I, Proj>> Fun>auto for_each(I first, S last, Fun f, Proj proj= Proj{})->ranges::tagged_pair<tag::in(I),tag::fun(Fun)>{for(; first!= last;++first)ranges::invoke(f,ranges::invoke(proj,*first));return{std::move(first), std::move(f)};} |
| This section is incomplete Reason: no example |
| applies a function to a range of elements (function template)[edit] | |
range-for loop(C++11) | executes loop over range[edit] |
| applies a unaryfunction object to elements from arange (function template)[edit] | |
(C++17) | applies a function object to the first N elements of a sequence (function template)[edit] |