std::transform
| Defined in header <algorithm> | ||
|---|---|---|
| (1) | ||
| template< class InputIt, class OutputIt, class UnaryOperation >
OutputIt transform( InputIt first1, InputIt last1, OutputIt d_first,
                    UnaryOperation unary_op ); | (until C++20) | |
| template< class InputIt, class OutputIt, class UnaryOperation >
constexpr OutputIt transform( InputIt first1, InputIt last1, OutputIt d_first,
                              UnaryOperation unary_op ); | (since C++20) | |
| template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class UnaryOperation >
ForwardIt2 transform( ExecutionPolicy&& policy, ForwardIt1 first1, ForwardIt1 last1,
                    ForwardIt2 d_first, UnaryOperation unary_op ); | (2) | (since C++17) | 
| (3) | ||
| template< class InputIt1, class InputIt2, class OutputIt, class BinaryOperation >
OutputIt transform( InputIt1 first1, InputIt1 last1, InputIt2 first2, 
                    OutputIt d_first, BinaryOperation binary_op ); | (until C++20) | |
| template< class InputIt1, class InputIt2, class OutputIt, class BinaryOperation >
constexpr OutputIt transform( InputIt1 first1, InputIt1 last1, InputIt2 first2, 
                              OutputIt d_first, BinaryOperation binary_op ); | (since C++20) | |
| template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2, class ForwardIt3, class BinaryOperation >
ForwardIt3 transform( ExecutionPolicy&& policy, ForwardIt1 first1, ForwardIt1 last1,
                    ForwardIt2 first2, ForwardIt3 d_first, BinaryOperation binary_op ); | (4) | (since C++17) | 
std::transform applies the given function to a range and stores the result in another range, beginning at d_first.
unary_op is applied to the range defined by [first1, last1).binary_op is applied to pairs of elements from two ranges: one defined by [first1, last1) and the other beginning at first2.policy. This overload only participates in overload resolution if std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> is true | 
 | (until C++11) | 
| 
 | (since C++11) | 
Parameters
| first1, last1 | - | the first range of elements to transform | 
| first2 | - | the beginning of the second range of elements to transform | 
| d_first | - | the beginning of the destination range, may be equal to first1orfirst2 | 
| policy | - | the execution policy to use. See execution policy for details. | 
| unary_op | - | unary operation function object that will be applied. The signature of the function should be equivalent to the following: 
 The signature does not need to have  | 
| binary_op | - | binary operation function object that will be applied. The signature of the function should be equivalent to the following: 
 The signature does not need to have  | 
| Type requirements | ||
| - InputIt, InputIt1, InputIt2must meet the requirements of LegacyInputIterator. | ||
| - OutputItmust meet the requirements of LegacyOutputIterator. | ||
| - ForwardIt1, ForwardIt2, ForwardIt3must meet the requirements of LegacyForwardIterator. | ||
Return value
Output iterator to the element past the last element transformed.
Complexity
Exceptions
The overloads with a template parameter named ExecutionPolicy report errors as follows:
-  If execution of a function invoked as part of the algorithm throws an exception and ExecutionPolicyis one of the standard policies,std::terminateis called. For any otherExecutionPolicy, the behavior is implementation-defined.
-  If the algorithm fails to allocate memory, std::bad_allocis thrown.
Possible implementation
| First version | 
|---|
| template<class InputIt, class OutputIt, class UnaryOperation>
OutputIt transform(InputIt first1, InputIt last1, OutputIt d_first, 
                   UnaryOperation unary_op)
{
    while (first1 != last1) {
        *d_first++ = unary_op(*first1++);
    }
    return d_first;
} | 
| Second version | 
| template<class InputIt1, class InputIt2, 
         class OutputIt, class BinaryOperation>
OutputIt transform(InputIt1 first1, InputIt1 last1, InputIt2 first2, 
                   OutputIt d_first, BinaryOperation binary_op)
{
    while (first1 != last1) {
        *d_first++ = binary_op(*first1++, *first2++);
    }
    return d_first;
} | 
Notes
std::transform does not guarantee in-order application of unary_op or binary_op. To apply a function to a sequence in-order or to apply a function that modifies the elements of a sequence, use std::for_each.
Example
The following code uses transform to convert a string in place to uppercase using the toupper function and then transforms each char to its ordinal value:
#include <algorithm>
#include <cctype>
#include <iostream>
#include <string>
#include <vector>
 
int main()
{
    std::string s("hello");
    std::transform(s.begin(), s.end(), s.begin(),
                   [](unsigned char c) -> unsigned char { return std::toupper(c); });
 
    std::vector<std::size_t> ordinals;
    std::transform(s.begin(), s.end(), std::back_inserter(ordinals),
                   [](unsigned char c) -> std::size_t { return c; });
 
    std::cout << s << ':';
    for (auto ord : ordinals) {
       std::cout << ' ' << ord;
    }
}Output:
HELLO: 72 69 76 76 79
See also
| applies a function to a range of elements (function template) | 
    © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
    http://en.cppreference.com/w/cpp/algorithm/transform