| 726 | */ |
| 727 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 728 | inline void ireplace_all( |
| 729 | SequenceT& Input, |
| 730 | const Range1T& Search, |
| 731 | const Range2T& Format, |
| 732 | const std::locale& Loc=std::locale() ) |
| 733 | { |
| 734 | ::boost::algorithm::find_format_all( |
| 735 | Input, |
| 736 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 737 | ::boost::algorithm::const_formatter(Format) ); |
| 738 | } |
| 739 | |
| 740 | // replace_head --------------------------------------------------------------------// |
| 741 |
nothing calls this directly
no test coverage detected