MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / find_if

Function find_if

extra/yassl/taocrypt/mySTL/algorithm.hpp:66–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64
65template<typename InIter, typename Pred>
66InIter find_if(InIter first, InIter last, Pred pred)
67{
68 while (first != last && !pred(*first))
69 ++first;
70 return first;
71}
72
73
74template<typename InputIter, typename OutputIter>

Callers 4

lookupMethod · 0.85
removeMethod · 0.85
RemoveMethod · 0.85
LookupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected