qxLib
iterate.h
Go to the documentation of this file.
1 /**
2 
3  @file iterate.h
4  @author Khrapov
5  @date 23.08.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/algo/filters.h>
12 
13 #include <utility>
14 
15 namespace qx
16 {
17 
18 namespace iterate_adapters
19 {
20 
21 constexpr auto no_change = []<class T>(T&& value)
22 {
23  return std::forward<T>(value);
24 };
25 
26 } // namespace iterate_adapters
27 
28 /**
29  @brief Iterate container with filter
30  @details This function is useful when:
31  1. you don't want to use getter for container
32  (for ex. even const vector of shared_ptr will allow the client to make one more shared_ptr)
33  2. you don't want the client to know what type of container you are using
34  3. you want the client to be able to iterate only over a part of the value of an element of the vector
35  @see code examples in test_iterate.cpp
36  @tparam container_t - container of elements type
37  @tparam callable_t - callable type. if callable returns false, iteration breaks
38  @tparam filter_t - filter type. if filter returns true, callable is applied
39  @tparam adapter_t - adapter type. converts container element type to another type for callable and filter
40  @param container - container object
41  @param callable - callable object
42  @param filter - filter object
43  @param adapter - adapter object
44 **/
45 template<
46  class container_t,
47  class callable_t,
48  class filter_t = decltype(filters::always_true),
49  class adapter_t = decltype(iterate_adapters::no_change)>
50 void iterate(
51  const container_t& container,
52  const callable_t& callable,
53  const filter_t& filter = filters::always_true,
54  const adapter_t& adapter = iterate_adapters::no_change)
55 {
56  for (const auto& element : container)
57  {
58  auto adaptedElement = adapter(element);
59  if (filter(adaptedElement) && callable(adaptedElement))
60  break;
61  }
62 }
63 
64 } // namespace qx
void iterate(const container_t &container, const callable_t &callable, const filter_t &filter=filters::always_true, const adapter_t &adapter=iterate_adapters::no_change)
Iterate container with filter.
Definition: iterate.h:50