| 619 | typename Range1T, |
| 620 | typename Range2T> |
| 621 | inline OutputIteratorT ierase_all_copy( |
| 622 | OutputIteratorT Output, |
| 623 | const Range1T& Input, |
| 624 | const Range2T& Search, |
| 625 | const std::locale& Loc=std::locale() ) |
| 626 | { |
| 627 | return ::boost::algorithm::find_format_all_copy( |
| 628 | Output, |
| 629 | Input, |
| 630 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 631 | ::boost::algorithm::empty_formatter(Input) ); |
| 632 | } |
| 633 | |
| 634 | //! Erase all algorithm ( case insensitive ) |
| 635 | /*! |
nothing calls this directly
no test coverage detected