|
|
template<class InputRange , class T > |
boost::range_iterator< InputRange >::type | remove (InputRange &range, const T &value) |
|
template<class InputRange , class OutputIterator , class T > |
boost::range_iterator< InputRange >::type | remove_copy (InputRange &range, OutputIterator result, const T &value) |
|
template<class InputRange , class OutputIterator , class T > |
boost::range_const_iterator< InputRange >::type | remove_copy (const InputRange &range, OutputIterator result, const T &value) |
|
template<class InputIterator , class OutputIterator , class Predicate > |
InputIterator | remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
|
template<class InputRange , class OutputIterator , class Predicate > |
boost::range_iterator< InputRange >::type | remove_copy_if (InputRange &range, OutputIterator result, Predicate pred) |
|
template<class InputRange , class OutputIterator , class Predicate > |
boost::range_const_iterator< InputRange >::type | remove_copy_if (const InputRange &range, OutputIterator result, Predicate pred) |
|
template<class InputIterator , class Predicate > |
InputIterator | remove_if (InputIterator first, InputIterator last, Predicate pred) |
|
template<class InputRange , class Predicate > |
boost::range_iterator< InputRange >::type | remove_if (InputRange &range, Predicate pred) |
|
- See also
-
§ remove()
boost::range_iterator<InputRange>::type adobe::remove |
( |
InputRange & |
range, |
|
|
const T & |
value |
|
) |
| |
remove implementation
Definition at line 42 of file remove.hpp.
§ remove_copy() [1/2]
boost::range_iterator<InputRange>::type adobe::remove_copy |
( |
InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
const T & |
value |
|
) |
| |
remove implementation
Definition at line 77 of file remove.hpp.
§ remove_copy() [2/2]
boost::range_const_iterator<InputRange>::type adobe::remove_copy |
( |
const InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
const T & |
value |
|
) |
| |
remove implementation
Definition at line 89 of file remove.hpp.
§ remove_copy_if() [1/3]
InputIterator adobe::remove_copy_if |
( |
InputIterator |
first, |
|
|
InputIterator |
last, |
|
|
OutputIterator |
result, |
|
|
Predicate |
pred |
|
) |
| |
§ remove_copy_if() [2/3]
boost::range_iterator<InputRange>::type adobe::remove_copy_if |
( |
InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
Predicate |
pred |
|
) |
| |
§ remove_copy_if() [3/3]
boost::range_const_iterator<InputRange>::type adobe::remove_copy_if |
( |
const InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
Predicate |
pred |
|
) |
| |
§ remove_if() [1/2]
InputIterator adobe::remove_if |
( |
InputIterator |
first, |
|
|
InputIterator |
last, |
|
|
Predicate |
pred |
|
) |
| |
remove implementation
Definition at line 53 of file remove.hpp.
§ remove_if() [2/2]
boost::range_iterator<InputRange>::type adobe::remove_if |
( |
InputRange & |
range, |
|
|
Predicate |
pred |
|
) |
| |
remove implementation
Definition at line 65 of file remove.hpp.
|