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

Function find_first_not_of

extern/boost/boost/test/utils/algorithm.hpp:90–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88/// @param last2 - second collection end iterator
89template<class ForwardIterator1, class ForwardIterator2>
90inline ForwardIterator1
91find_first_not_of( ForwardIterator1 first1, ForwardIterator1 last1,
92 ForwardIterator2 first2, ForwardIterator2 last2 )
93{
94 while( first1 != last1 ) {
95 if( std::find( first2, last2, *first1 ) == last2 )
96 break;
97 ++first1;
98 }
99
100 return first1;
101}
102
103//____________________________________________________________________________//
104

Callers 1

find_first_not_ofMethod · 0.85

Calls 2

find_ifFunction · 0.85
findFunction · 0.50

Tested by

no test coverage detected