MCPcopy Create free account
hub / github.com/boostorg/parser / find_if_not

Function find_if_not

include/boost/parser/detail/text/algorithm.hpp:97–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95 a sentinel. */
96 template<typename BidiIter, typename Sentinel, typename Pred>
97 BidiIter find_if_not(BidiIter first, Sentinel last, Pred p)
98 {
99 while (first != last) {
100 if (!p(*first))
101 return first;
102 ++first;
103 }
104 return first;
105 }
106
107 /** Analogue of `std::find()` that finds the last value in `[first, last)`
108 equal to `x`. */

Callers 2

foreach_subrangeFunction · 0.85
foreach_subrange_ifFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected