| 258 | typename Range1T, |
| 259 | typename Range2T> |
| 260 | inline OutputIteratorT erase_last_copy( |
| 261 | OutputIteratorT Output, |
| 262 | const Range1T& Input, |
| 263 | const Range2T& Search ) |
| 264 | { |
| 265 | return ::boost::algorithm::find_format_copy( |
| 266 | Output, |
| 267 | Input, |
| 268 | ::boost::algorithm::last_finder(Search), |
| 269 | ::boost::algorithm::empty_formatter(Input) ); |
| 270 | } |
| 271 | |
| 272 | //! Erase last algorithm |
| 273 | /*! |
nothing calls this directly
no test coverage detected