qxLib
contains.h
Go to the documentation of this file.
1 /**
2 
3  @file contains.h
4  @author Khrapov
5  @date 6.08.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <algorithm>
12 
13 namespace qx
14 {
15 
16 /**
17  @brief Check if range contains value
18  @tparam fwd_it_t - forward iterator type
19  @tparam T - value type
20  @param itBegin - range begin iterator
21  @param itEnd - range end iterator
22  @param value - value to check
23  @retval - true if range contains value
24 **/
25 template<class fwd_it_t, class T>
26 bool contains(fwd_it_t itBegin, fwd_it_t itEnd, const T& value)
27 {
28  return std::find(itBegin, itEnd, value) != itEnd;
29 }
30 
31 /**
32  @brief Check if container contains value
33  @tparam container_t - container type
34  @tparam T - value type
35  @param container - container to search in
36  @param value - value to check
37  @retval - true if container contains value
38 **/
39 template<class container_t, class T>
40 bool contains(const container_t& container, const T& value)
41 {
42  return contains(container.begin(), container.end(), value);
43 }
44 
45 /**
46  @brief Check if at least one of range's elements satisfies a predicate
47  @tparam fwd_it_t - forward iterator type
48  @tparam predicate_t - predicate type
49  @param itBegin - range begin iterator
50  @param itEnd - range end iterator
51  @param predicate - predicate to check
52  @retval - true if at least one of range elements satisfies a predicate
53 **/
54 template<class fwd_it_t, class predicate_t>
55 bool contains_if(fwd_it_t itBegin, fwd_it_t itEnd, const predicate_t& predicate)
56 {
57  return std::find_if(itBegin, itEnd, predicate) != itEnd;
58 }
59 
60 /**
61  @brief Check if at least one of range's elements satisfies a predicate
62  @tparam container_t - container type
63  @tparam predicate_t - predicate type
64  @param container - container to search in
65  @param predicate - predicate to check
66  @retval - true if at least one of container elements satisfies predicate
67 **/
68 template<class container_t, class predicate_t>
69 bool contains_if(const container_t& container, const predicate_t& predicate)
70 {
71  return contains_if(container.begin(), container.end(), predicate);
72 }
73 
74 /**
75  @brief Check that at least one element from the first range is equal to at least one element from the second range
76  @tparam where_fwd_it_t - first range's iterator type
77  @tparam what_fwd_it_t - second range's iterator type
78  @param itWhereBegin - first range's start iterator
79  @param itWhereEnd - first range's end iterator
80  @param itWhatBegin - second range's start iterator
81  @param itWhatEnd - second range's end iterator
82  @retval - true if found
83 **/
84 template<class where_fwd_it_t, class what_fwd_it_t>
85 constexpr bool contains_any(
86  where_fwd_it_t itWhereBegin,
87  where_fwd_it_t itWhereEnd,
88  what_fwd_it_t itWhatBegin,
89  what_fwd_it_t itWhatEnd)
90 {
91  for (what_fwd_it_t it = itWhatBegin; it != itWhatEnd; ++it)
92  if (contains(itWhereBegin, itWhereEnd, *it))
93  return true;
94 
95  return false;
96 }
97 
98 /**
99  @brief Check that at least one element from the first range is equal to at least one element from the second range
100  @tparam where_container_t - first range's type
101  @tparam what_container_t - second range's type
102  @param whereContainer - first range
103  @param whatContainer - second range
104  @retval - true if found
105 **/
106 template<class where_container_t, class what_container_t>
107 constexpr bool contains_any(const where_container_t& whereContainer, const what_container_t& whatContainer)
108 {
109  return contains_any(whereContainer.begin(), whereContainer.end(), whatContainer.begin(), whatContainer.end());
110 }
111 
112 } // namespace qx
constexpr bool contains_any(where_fwd_it_t itWhereBegin, where_fwd_it_t itWhereEnd, what_fwd_it_t itWhatBegin, what_fwd_it_t itWhatEnd)
Check that at least one element from the first range is equal to at least one element from the second...
Definition: contains.h:85
bool contains_if(fwd_it_t itBegin, fwd_it_t itEnd, const predicate_t &predicate)
Check if at least one of range's elements satisfies a predicate.
Definition: contains.h:55
Check that tuple type contains T.