GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::ranges::find,std::experimental::ranges::find_if,(3) C++ Standard Libary std::experimental::ranges::find,std::experimental::ranges::find_if,(3)

std::experimental::ranges::find,std::experimental::ranges::find_if, - std::experimental::ranges::find,std::experimental::ranges::find_if,


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>, (1) (ranges TS)
const T*>


I find(I first, S last, const T& value, Proj proj = Proj{});
template< InputRange R, class T, class Proj = ranges::identity >


requires IndirectRelation<ranges::equal_to<>,
projected<ranges::iterator_t<R>, Proj>, const T*> (2) (ranges TS)


ranges::safe_iterator_t<R> find(R&& r, const T& value, Proj proj =
Proj{});
template< InputIterator I, Sentinel<I> S, class Proj =
ranges::identity,
(3) (ranges TS)
IndirectUnaryPredicate<projected<I, Proj>> Pred >


I find_if(I first, S last, Pred pred, Proj proj = Proj{});
template< InputRange R, class Proj = ranges::identity,


IndirectUnaryPredicate<projected<ranges::iterator_t<R>, Proj>> Pred
> (4) (ranges TS)


ranges::safe_iterator_t<R> find_if(R&& r, Pred pred, Proj proj =
Proj{});
template< InputIterator I, Sentinel<I> S, class Proj =
ranges::identity,
(5) (ranges TS)
IndirectUnaryPredicate<projected<I, Proj>> Pred >


I find_if_not(I first, S last, Pred pred, Proj proj = Proj{});
template< InputRange R, class Proj = ranges::identity,


IndirectUnaryPredicate<projected<ranges::iterator_t<R>, Proj>> Pred
> (6) (ranges TS)


ranges::safe_iterator_t<R> find_if_not(R&& r, Pred pred, Proj proj =
Proj{});


Returns the first element in the range [first, last) that satisfies specific
criteria:


1) find searches for an element whose projected value is equal to value (i.e., value
== ranges::invoke(proj, *i)).
3) 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).
5) 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).
2,4,6) Same as (1,3,5), but uses 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.


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


Iterator to the first element satisfying the condition. If no such element is found,
returns an iterator that compares equal to last.


At most last - first applications of the predicate and projection.


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;
}


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;
}


This section is incomplete
Reason: no example


find
find_if finds the first element satisfying specific criteria
find_if_not (function template)
(C++11)
finds the first two adjacent items that are equal (or satisfy a given
adjacent_find predicate)
(function template)
find_end finds the last sequence of elements in a certain range
(function template)
find_first_of searches for any one of a set of elements
(function template)
mismatch finds the first position where two ranges differ
(function template)
search searches for a range of elements
(function template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.