qxLib
transform.h
Go to the documentation of this file.
1 /**
2 
3  @file transform.h
4  @author Khrapov
5  @date 1.10.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <concepts>
12 
13 namespace qx
14 {
15 
16 /**
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
51  @param input - input container, may be moved
52  @param transformCallable - transformation callable
53  @retval - container with transformed elements
54 **/
55 template<
56  template<class...>
57  class result_container_t,
58  class input_container_t,
59  class transform_callable_t,
60  class... result_container_rest_t>
61 auto transform_return(input_container_t&& input, const transform_callable_t& transformCallable);
62 
63 } // namespace qx
64 
65 #include <qx/algo/transform.inl>
auto transform_return(input_container_t &&input, const transform_callable_t &transformCallable)
std::transform equivalent that makes the code a bit shorter
Definition: transform.inl:38