Adobe Source Libraries 1.49.0
A collection of C++ libraries.
Loading...
Searching...
No Matches

Functions

template<class InputRange, class T>
boost::range_iterator< InputRange >::type remove (InputRange &range, const T &value)
 remove implementation
template<class InputIterator, class Predicate>
InputIterator remove_if (InputIterator first, InputIterator last, Predicate pred)
 remove implementation
template<class InputRange, class Predicate>
boost::range_iterator< InputRange >::type remove_if (InputRange &range, Predicate pred)
 remove implementation
template<class InputRange, class OutputIterator, class T>
boost::range_iterator< InputRange >::type remove_copy (InputRange &range, OutputIterator result, const T &value)
 remove implementation
template<class InputRange, class OutputIterator, class T>
boost::range_const_iterator< InputRange >::type remove_copy (const InputRange &range, OutputIterator result, const T &value)
 remove implementation
template<class InputIterator, class OutputIterator, class Predicate>
InputIterator remove_copy_if (InputIterator first, InputIterator last, OutputIterator result, Predicate pred)
 remove implementation
template<class InputRange, class OutputIterator, class Predicate>
boost::range_iterator< InputRange >::type remove_copy_if (InputRange &range, OutputIterator result, Predicate pred)
 remove implementation
template<class InputRange, class OutputIterator, class Predicate>
boost::range_const_iterator< InputRange >::type remove_copy_if (const InputRange &range, OutputIterator result, Predicate pred)
 remove implementation

Detailed Description

See also

Function Documentation

◆ remove()

template<class InputRange, class T>
boost::range_iterator< InputRange >::type remove ( InputRange & range,
const T & value )

Definition at line 41 of file remove.hpp.

◆ remove_if() [1/2]

template<class InputIterator, class Predicate>
InputIterator remove_if ( InputIterator first,
InputIterator last,
Predicate pred )

Definition at line 51 of file remove.hpp.

◆ remove_if() [2/2]

template<class InputRange, class Predicate>
boost::range_iterator< InputRange >::type remove_if ( InputRange & range,
Predicate pred )

Definition at line 61 of file remove.hpp.

◆ remove_copy() [1/2]

template<class InputRange, class OutputIterator, class T>
boost::range_iterator< InputRange >::type remove_copy ( InputRange & range,
OutputIterator result,
const T & value )

Definition at line 73 of file remove.hpp.

◆ remove_copy() [2/2]

template<class InputRange, class OutputIterator, class T>
boost::range_const_iterator< InputRange >::type remove_copy ( const InputRange & range,
OutputIterator result,
const T & value )

Definition at line 84 of file remove.hpp.

◆ remove_copy_if() [1/3]

template<class InputIterator, class OutputIterator, class Predicate>
InputIterator remove_copy_if ( InputIterator first,
InputIterator last,
OutputIterator result,
Predicate pred )

Definition at line 94 of file remove.hpp.

◆ remove_copy_if() [2/3]

template<class InputRange, class OutputIterator, class Predicate>
boost::range_iterator< InputRange >::type remove_copy_if ( InputRange & range,
OutputIterator result,
Predicate pred )

Definition at line 106 of file remove.hpp.

◆ remove_copy_if() [3/3]

template<class InputRange, class OutputIterator, class Predicate>
boost::range_const_iterator< InputRange >::type remove_copy_if ( const InputRange & range,
OutputIterator result,
Predicate pred )

Definition at line 117 of file remove.hpp.