MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / find_if

Function find_if

extern/boost/boost/container/detail/algorithm.hpp:111–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109
110template<class InputIt, class UnaryPredicate>
111InputIt find_if(InputIt first, InputIt last, UnaryPredicate p)
112{
113 for (; first != last; ++first) {
114 if (p(*first)) {
115 return first;
116 }
117 }
118 return last;
119}
120
121template<class ForwardIt1, class ForwardIt2, class BinaryPredicate>
122 ForwardIt1 find_end (ForwardIt1 first1, ForwardIt1 last1

Callers 9

RecolorMethod · 0.85
find_first_not_ofFunction · 0.85
find_last_ofFunction · 0.85
find_last_not_ofFunction · 0.85
operator()Method · 0.85
cpp_dec_float.hppFile · 0.85
isoneMethod · 0.85
isintMethod · 0.85
rd_stringMethod · 0.85

Calls

no outgoing calls

Tested by 3

find_first_not_ofFunction · 0.68
find_last_ofFunction · 0.68
find_last_not_ofFunction · 0.68