Function template find_last_not_of
boost::unit_test::utils::find_last_not_of — this algorithm search through first collection for last element that does not satisfy binary predicate in conjunction will any element in second collection
Synopsis
template<typename BidirectionalIterator1, typename ForwardIterator2,
typename Predicate>
BidirectionalIterator1
find_last_not_of(BidirectionalIterator1 first1,
BidirectionalIterator1 last1, ForwardIterator2 first2,
ForwardIterator2 last2, Predicate pred);Description
Параметры: | <first1> | - первый итератор сборки | <first2> | - второй итератор сборки | <last1> | - первый итератор конца коллекции | <last2> | - второй конечный итератор коллекции | <pred> | - предикат, используемый для поиска |
|