25 template<
class fwd_it_t,
class T>
26 bool contains(fwd_it_t itBegin, fwd_it_t itEnd,
const T& value)
28 return std::find(itBegin, itEnd, value) != itEnd;
39 template<
class container_t,
class T>
40 bool contains(
const container_t& container,
const T& value)
42 return contains(container.begin(), container.end(), value);
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)
57 return std::find_if(itBegin, itEnd, predicate) != itEnd;
68 template<
class container_t,
class predicate_t>
69 bool contains_if(
const container_t& container,
const predicate_t& predicate)
71 return contains_if(container.begin(), container.end(), predicate);
84 template<
class where_fwd_it_t,
class what_fwd_it_t>
86 where_fwd_it_t itWhereBegin,
87 where_fwd_it_t itWhereEnd,
88 what_fwd_it_t itWhatBegin,
89 what_fwd_it_t itWhatEnd)
91 for (what_fwd_it_t it = itWhatBegin; it != itWhatEnd; ++it)
92 if (
contains(itWhereBegin, itWhereEnd, *it))
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)
109 return contains_any(whereContainer.begin(), whereContainer.end(), whatContainer.begin(), whatContainer.end());
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...
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.
Check that tuple type contains T.