remove.hpp
Go to the documentation of this file.
7 /*************************************************************************************************/
20 /*************************************************************************************************/
24 /*************************************************************************************************/
35 /*************************************************************************************************/
42 inline typename boost::range_iterator<InputRange>::type remove(InputRange& range, const T& value)
130 /*************************************************************************************************/
134 /*************************************************************************************************/
138 /*************************************************************************************************/
boost::range_iterator< InputRange >::type remove(InputRange &range, const T &value) remove implementation Definition: remove.hpp:42 InputIterator remove_if(InputIterator first, InputIterator last, Predicate pred) remove implementation Definition: remove.hpp:53 boost::range_iterator< InputRange >::type remove_copy(InputRange &range, OutputIterator result, const T &value) remove implementation Definition: remove.hpp:77 boost::range_const_iterator< InputRange >::type remove_copy_if(const InputRange &range, OutputIterator result, Predicate pred) remove implementation Definition: remove.hpp:125 boost::range_const_iterator< InputRange >::type remove_copy(const InputRange &range, OutputIterator result, const T &value) remove implementation Definition: remove.hpp:89 Definition: functional.hpp:26 InputIterator remove_copy_if(InputIterator first, InputIterator last, OutputIterator result, Predicate pred) remove implementation Definition: remove.hpp:101 boost::range_iterator< InputRange >::type remove_if(InputRange &range, Predicate pred) remove implementation Definition: remove.hpp:65 |