| 647 | */ |
| 648 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 649 | inline void replace_all( |
| 650 | SequenceT& Input, |
| 651 | const Range1T& Search, |
| 652 | const Range2T& Format ) |
| 653 | { |
| 654 | ::boost::algorithm::find_format_all( |
| 655 | Input, |
| 656 | ::boost::algorithm::first_finder(Search), |
| 657 | ::boost::algorithm::const_formatter(Format) ); |
| 658 | } |
| 659 | |
| 660 | // replace_all ( case insensitive ) -----------------------------------------------// |
| 661 |
no test coverage detected