| 88 | /// @param last2 - second collection end iterator |
| 89 | template<class ForwardIterator1, class ForwardIterator2> |
| 90 | inline ForwardIterator1 |
| 91 | find_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 |
no test coverage detected