| 48 | */ |
| 49 | template<typename OutputIteratorT, typename RangeT> |
| 50 | inline OutputIteratorT erase_range_copy( |
| 51 | OutputIteratorT Output, |
| 52 | const RangeT& Input, |
| 53 | const iterator_range< |
| 54 | BOOST_STRING_TYPENAME |
| 55 | range_const_iterator<RangeT>::type>& SearchRange ) |
| 56 | { |
| 57 | return ::boost::algorithm::find_format_copy( |
| 58 | Output, |
| 59 | Input, |
| 60 | ::boost::algorithm::range_finder(SearchRange), |
| 61 | ::boost::algorithm::empty_formatter(Input) ); |
| 62 | } |
| 63 | |
| 64 | //! Erase range algorithm |
| 65 | /*! |
nothing calls this directly
no test coverage detected