boost::range::remove

References

Headers

boost::range::remove is available by including any of the following headers:

  • boost/range/algorithm/remove.hpp or
  • boost/range/algorithm.hpp

Examples

remove.cpp

#include <functional>
#include <iostream>
#include <vector>
#include <boost/range/algorithm.hpp>

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5};

    // remove() is a wrapper for std::remove(). Elements in the input range
    // are reordered, but the size of the input container is not changed.
    // An iterator to the new end is returned.
    std::vector<int>::iterator end_it = boost::range::remove(vec, 2);

    std::cout << "input vector after remove(vec, 2): ";
    boost::range::copy(vec, std::ostream_iterator<int>(std::cout, " "));
    std::cout << std::endl;

    std::cout << "Index of the returned iterator: " << (end_it - vec.begin());
    std::cout << std::endl;
    return 0;
}

Output:

input vector after remove(vec, 2): 1 3 4 5 5 
Index of the returned iterator: 4

 

Boost Range for Humans

This reference is part of Boost Range for Humans. Click the link to the overview.