Add range-based overload of find_not().

This commit is contained in:
Zach Laine
2018-05-12 15:25:37 -05:00
parent 8c9d5e858c
commit 6c68cf8624
3 changed files with 40 additions and 1 deletions

View File

@ -42,6 +42,9 @@ our find condition.
template<typename InputIter, typename Sentinel, typename T>
InputIter find_not(InputIter first, Sentinel last, T const & x);
template<typename Range, typename T>
typename boost::range_iterator<Range>::type find_not(Range & r, T const & x);
The function `find_not` returns the first value in the sequence `[first,
last)` that is not equal to `x`.