17 @brief std::transform equivalent that makes the code a bit shorter
18 @code
19 std::vector numbers { 1, 2, 3 };
20
21 {
22 std::vector<qx::string> strings;
23 strings.resize(numbers.size());
24 std::transform(
25 numbers.begin(),
26 numbers.end(),
27 strings.begin(),
28 [](int nNumber)
29 {
30 return qx::string::static_from(nNumber);
31 });
32 return strings;
33 }
34
35 // vs
36
37 {
38 return qx::transform_return<std::vector>(
39 numbers,
40 [](int nNumber)
41 {
42 return qx::string::static_from(nNumber);
43 });
44 }
45
46 @endcode
47 @tparam result_container_t - any container type, that supports iteration and .insert(it, value)
48 @tparam input_container_t - any container type, that supports iteration
49 @tparam transform_callable_t - callable type, that takes input_container_t's element type, the return value of this callable forms result_container_t's element type
50 @tparam result_container_rest_t - any types required for result_container_t after element type