| 658 | */ |
| 659 | template<typename SequenceT, typename RangeT> |
| 660 | inline void ierase_all( |
| 661 | SequenceT& Input, |
| 662 | const RangeT& Search, |
| 663 | const std::locale& Loc=std::locale() ) |
| 664 | { |
| 665 | ::boost::algorithm::find_format_all( |
| 666 | Input, |
| 667 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 668 | ::boost::algorithm::empty_formatter(Input) ); |
| 669 | } |
| 670 | |
| 671 | // erase_head --------------------------------------------------------------------// |
| 672 |
nothing calls this directly
no test coverage detected