|
ProteoWizard
|
Functions | |
| template<class InputIterator , class InputIterator2 , class OutputIterator , class Predicate > | |
| OutputIterator | copy_if (InputIterator first, InputIterator last, InputIterator2 source, OutputIterator result, Predicate pred) |
| template<class InputIterator , class InputIterator2 , class OutputIterator , class Predicate > | |
| OutputIterator | copy_if_not (InputIterator first, InputIterator last, InputIterator2 source, OutputIterator result, Predicate pred) |
| template<typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | copy_if (InputIterator begin, InputIterator end, OutputIterator destBegin, Predicate p) |
| copy_if More... | |
| template<typename InputIterator , typename OutputIterator , typename Predicate > | |
| OutputIterator | copy_if_not (InputIterator begin, InputIterator end, OutputIterator destBegin, Predicate p) |
| copy_if_not for containers More... | |
| OutputIterator ralab::base::utils::copy_if | ( | InputIterator | first, |
| InputIterator | last, | ||
| InputIterator2 | source, | ||
| OutputIterator | result, | ||
| Predicate | pred | ||
| ) |
Definition at line 35 of file copyif.hpp.
Referenced by ralab::base::ms::PeakPicker< TReal, TIntegrator >::filter().
| OutputIterator ralab::base::utils::copy_if_not | ( | InputIterator | first, |
| InputIterator | last, | ||
| InputIterator2 | source, | ||
| OutputIterator | result, | ||
| Predicate | pred | ||
| ) |
Definition at line 56 of file copyif.hpp.
| OutputIterator ralab::base::utils::copy_if | ( | InputIterator | begin, |
| InputIterator | end, | ||
| OutputIterator | destBegin, | ||
| Predicate | p | ||
| ) |
copy_if
Implementation of copy_if as suggested in Efficient STL (Scott Meyers) item 37.
Definition at line 84 of file copyif.hpp.
| OutputIterator ralab::base::utils::copy_if_not | ( | InputIterator | begin, |
| InputIterator | end, | ||
| OutputIterator | destBegin, | ||
| Predicate | p | ||
| ) |
copy_if_not for containers
Implementation of copy_if as suggested in Efficient STL (Scott Meyers) item 37.
Definition at line 112 of file copyif.hpp.
1.8.13