diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-25 12:31:29 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-25 12:31:29 +0000 |
commit | 0bab3365ab64388aec5a25060aa40f6022d2db47 (patch) | |
tree | 88c621c773a19487886fc4758388f68856812312 /libstdc++-v3/include/bits | |
parent | f0741be49ab8138a5448c6bbe293357ae6a3b854 (diff) | |
download | gcc-0bab3365ab64388aec5a25060aa40f6022d2db47.tar.gz |
2008-06-25 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk r137105
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@137106 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits')
-rw-r--r-- | libstdc++-v3/include/bits/stl_algo.h | 43 |
1 files changed, 41 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/stl_algo.h b/libstdc++-v3/include/bits/stl_algo.h index 549c0cac7e7..6b1e8a52bd0 100644 --- a/libstdc++-v3/include/bits/stl_algo.h +++ b/libstdc++-v3/include/bits/stl_algo.h @@ -712,7 +712,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * @return An iterator designating the end of the resulting sequence. * * Copies each element in the range @p [first,last) for which - * @p pred returns true to the range beginning at @p result. + * @p pred returns false to the range beginning at @p result. * * remove_copy_if() is stable, so the relative order of elements that are * copied is unchanged. @@ -740,6 +740,45 @@ _GLIBCXX_BEGIN_NAMESPACE(std) return __result; } +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + /** + * @brief Copy the elements of a sequence for which a predicate is true. + * @param first An input iterator. + * @param last An input iterator. + * @param result An output iterator. + * @param pred A predicate. + * @return An iterator designating the end of the resulting sequence. + * + * Copies each element in the range @p [first,last) for which + * @p pred returns true to the range beginning at @p result. + * + * copy_if() is stable, so the relative order of elements that are + * copied is unchanged. + */ + template<typename _InputIterator, typename _OutputIterator, + typename _Predicate> + _OutputIterator + copy_if(_InputIterator __first, _InputIterator __last, + _OutputIterator __result, _Predicate __pred) + { + // concept requirements + __glibcxx_function_requires(_InputIteratorConcept<_InputIterator>) + __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator, + typename iterator_traits<_InputIterator>::value_type>) + __glibcxx_function_requires(_UnaryPredicateConcept<_Predicate, + typename iterator_traits<_InputIterator>::value_type>) + __glibcxx_requires_valid_range(__first, __last); + + for (; __first != __last; ++__first) + if (__pred(*__first)) + { + *__result = *__first; + ++__result; + } + return __result; + } +#endif + /** * @brief Remove elements from a sequence. * @param first An input iterator. @@ -816,7 +855,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) _ForwardIterator __result = __first; ++__first; for(; __first != __last; ++__first) - if(!__pred(*__first)) + if(!bool(__pred(*__first))) { *__result = _GLIBCXX_MOVE(*__first); ++__result; |