|
Adobe Source Libraries 2.0.0
A collection of C++ libraries.
|
Functions | |
| template<class InputIterator, class T, class Compare> | |
| InputIterator | find_match (InputIterator first, InputIterator last, const T &value, Compare comp) |
| find_match implementation | |
| template<class InputRange, class T, class Compare> | |
| boost::range_iterator< InputRange >::type | find_match (InputRange &range, const T &value, Compare comp) |
| find_match implementation | |
| template<class InputRange, class T, class Compare> | |
| boost::range_const_iterator< InputRange >::type | find_match (const InputRange &range, const T &value, Compare comp) |
| find_match implementation | |
| template<class InputIterator, class T, class Compare> | |
| InputIterator | find_match (InputIterator first, InputIterator last, const T &value) |
| find_match implementation | |
| template<class InputRange, class T, class Compare> | |
| boost::range_iterator< InputRange >::type | find_match (InputRange &range, const T &value) |
| find_match implementation | |
| template<class InputRange, class T, class Compare> | |
| boost::range_const_iterator< InputRange >::type | find_match (const InputRange &range, const T &value) |
| find_match implementation | |
Returns the first iterator i in the range [first, last) such that comp(value,
i) return true. Returns last if no such iterator exists.
last - first applications of comp. | InputIterator find_match | ( | InputIterator | first, |
| InputIterator | last, | ||
| const T & | value, | ||
| Compare | comp ) |
Definition at line 41 of file find_match.hpp.
| boost::range_iterator< InputRange >::type find_match | ( | InputRange & | range, |
| const T & | value, | ||
| Compare | comp ) |
Definition at line 52 of file find_match.hpp.
| boost::range_const_iterator< InputRange >::type find_match | ( | const InputRange & | range, |
| const T & | value, | ||
| Compare | comp ) |
Definition at line 64 of file find_match.hpp.
| InputIterator find_match | ( | InputIterator | first, |
| InputIterator | last, | ||
| const T & | value ) |
Definition at line 74 of file find_match.hpp.
| boost::range_iterator< InputRange >::type find_match | ( | InputRange & | range, |
| const T & | value ) |
Definition at line 84 of file find_match.hpp.
| boost::range_const_iterator< InputRange >::type find_match | ( | const InputRange & | range, |
| const T & | value ) |
Definition at line 95 of file find_match.hpp.