|
NiHu
2.0
|
miscellaneous functions and metafunctions More...
Go to the source code of this file.
Functions | |
| template<class InputIterator , class OutputIterator , class Predicate > | |
| InputIterator | NiHu::move_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred) |
| move selected elements from a range to an other More... | |
miscellaneous functions and metafunctions
Definition in file misc.hpp.
| InputIterator NiHu::move_if | ( | InputIterator | first, |
| InputIterator | last, | ||
| OutputIterator | result, | ||
| Predicate | pred | ||
| ) |
move selected elements from a range to an other
| InputIterator | the input iterator |
| OutputIterator | the output iterator |
| Predicate | the predicate |
| [in] | first | begin iterator of input range |
| [in] | last | end iterator of input range |
| [in] | result | begin iterator of output range |
| [in] | pred | the predicate |