std::experimental::ranges::find, std::experimental::ranges::find_if, std::experimental::ranges::find_if_not
Defined in header <experimental/ranges/algorithm>
|
||
template< InputIterator I, Sentinel<I> S, class T, class Proj = ranges::identity > requires IndirectRelation<ranges::equal_to<>, projected<I, Proj>, const T*> |
(1) | (ranges TS) |
template< InputRange R, class T, class Proj = ranges::identity > requires IndirectRelation<ranges::equal_to<>, |
(2) | (ranges TS) |
template< InputIterator I, Sentinel<I> S, class Proj = ranges::identity, IndirectUnaryPredicate<projected<I, Proj>> Pred > |
(3) | (ranges TS) |
template< InputRange R, class Proj = ranges::identity, IndirectUnaryPredicate<projected<ranges::iterator_t<R>, Proj>> Pred > |
(4) | (ranges TS) |
template< InputIterator I, Sentinel<I> S, class Proj = ranges::identity, IndirectUnaryPredicate<projected<I, Proj>> Pred > |
(5) | (ranges TS) |
template< InputRange R, class Proj = ranges::identity, IndirectUnaryPredicate<projected<ranges::iterator_t<R>, Proj>> Pred > |
(6) | (ranges TS) |
Returns the first element in the range [first, last)
that satisfies specific criteria:
find
searches for an element whose projected value is equal to value
(i.e., value == ranges::invoke(proj, *i)).find_if
searches for an element for whose projected value predicate p
returns true (i.e., ranges::invoke(pred, ranges::invoke(proj, *i))) is true).find_if_not
searches for an element for whose projected value predicate q
returns false (i.e., ranges::invoke(pred, ranges::invoke(proj, *i))) is false).r
as the source range, as if using ranges::begin(r) as first
and ranges::end(r) as last
.Notwithstanding the declarations depicted above, the actual number and order of template parameters for algorithm declarations is unspecified. Thus, if explicit template arguments are used when calling an algorithm, the program is probably non-portable.
Parameters
first, last | - | the range of elements to examine |
r | - | the range of elements to examine |
value | - | value to compare the projected elements to |
pred | - | predicate to apply to the projected elements |
proj | - | projection to apply to the elements |
Return value
Iterator to the first element satisfying the condition. If no such element is found, returns an iterator that compares equal to last
.
Complexity
At most last
- first
applications of the predicate and projection.
Possible implementation
First version |
---|
template< InputIterator I, Sentinel<I> S, class T, class Proj = ranges::identity > requires IndirectRelation<ranges::equal_to<>, projected<I, Proj>, const T*> I find(I first, S last, const T& value, Proj proj = Proj{}) { for (; first != last; ++first) { if (ranges::invoke(proj, *first) == value) break; } return first; } |
Second version |
template< InputIterator I, Sentinel<I> S, class Proj = ranges::identity, IndirectUnaryPredicate<projected<I, Proj>> Pred > I find_if(I first, S last, Pred pred, Proj proj = Proj{}) { for (; first != last; ++first) { if (ranges::invoke(pred, ranges::invoke(proj, *first))) break; } return first; } |
Third version |
template< InputIterator I, Sentinel<I> S, class Proj = ranges::identity, IndirectUnaryPredicate<projected<I, Proj>> Pred > I find_if_not(I first, S last, Pred pred, Proj proj = Proj{}) { for (; first != last; ++first) { if (!ranges::invoke(pred, ranges::invoke(proj, *first))) break; } return first; } |
Example
This section is incomplete Reason: no example |
See also
(C++11) |
finds the first element satisfying specific criteria (function template) |
finds the first two adjacent items that are equal (or satisfy a given predicate) (function template) | |
finds the last sequence of elements in a certain range (function template) | |
searches for any one of a set of elements (function template) | |
finds the first position where two ranges differ (function template) | |
searches for a range of elements (function template) |