| 286 | typename Range2T, |
| 287 | typename Range3T> |
| 288 | inline OutputIteratorT replace_last_copy( |
| 289 | OutputIteratorT Output, |
| 290 | const Range1T& Input, |
| 291 | const Range2T& Search, |
| 292 | const Range3T& Format ) |
| 293 | { |
| 294 | return ::boost::algorithm::find_format_copy( |
| 295 | Output, |
| 296 | Input, |
| 297 | ::boost::algorithm::last_finder(Search), |
| 298 | ::boost::algorithm::const_formatter(Format) ); |
| 299 | } |
| 300 | |
| 301 | //! Replace last algorithm |
| 302 | /*! |
nothing calls this directly
no test coverage detected