qxLib
iterate_several_containers.h
Go to the documentation of this file.
1 /**
2 
3  @file iterate_several_containers.h
4  @author Khrapov
5  @date 26.08.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 namespace qx
12 {
13 
14 /**
15  @brief Iterate several containers in a row with one func
16  @tparam func_t - callable type
17  @tparam containers_t - containers types pack
18  @param func - iteration callable
19  @param containers - containers to iterate
20 **/
21 template<class func_t, class... containers_t>
22 void iterate_several_containers(const func_t& func, const containers_t&... containers)
23 {
24  auto iteration_func = [&]<class container_t>(const container_t& container)
25  {
26  for (const auto& elem : container)
27  func(elem);
28  };
29 
30  (iteration_func(containers), ...);
31 }
32 
33 } // namespace qx
void iterate_several_containers(const func_t &func, const containers_t &... containers)
Iterate several containers in a row with one func.