| 405 | */ |
| 406 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 407 | inline void ireplace_last( |
| 408 | SequenceT& Input, |
| 409 | const Range1T& Search, |
| 410 | const Range2T& Format, |
| 411 | const std::locale& Loc=std::locale() ) |
| 412 | { |
| 413 | ::boost::algorithm::find_format( |
| 414 | Input, |
| 415 | ::boost::algorithm::last_finder(Search, is_iequal(Loc)), |
| 416 | ::boost::algorithm::const_formatter(Format) ); |
| 417 | } |
| 418 | |
| 419 | // replace_nth --------------------------------------------------------------------// |
| 420 |
nothing calls this directly
no test coverage detected