| 365 | */ |
| 366 | template<typename SequenceT, typename RangeT> |
| 367 | inline void ierase_last( |
| 368 | SequenceT& Input, |
| 369 | const RangeT& Search, |
| 370 | const std::locale& Loc=std::locale() ) |
| 371 | { |
| 372 | ::boost::algorithm::find_format( |
| 373 | Input, |
| 374 | ::boost::algorithm::last_finder(Search, is_iequal(Loc)), |
| 375 | ::boost::algorithm::empty_formatter(Input) ); |
| 376 | } |
| 377 | |
| 378 | // erase_nth --------------------------------------------------------------------// |
| 379 |
nothing calls this directly
no test coverage detected