| 97 | */ |
| 98 | template<typename SequenceT, typename RangeT> |
| 99 | inline void replace_range( |
| 100 | SequenceT& Input, |
| 101 | const iterator_range< |
| 102 | BOOST_STRING_TYPENAME |
| 103 | range_iterator<SequenceT>::type>& SearchRange, |
| 104 | const RangeT& Format) |
| 105 | { |
| 106 | ::boost::algorithm::find_format( |
| 107 | Input, |
| 108 | ::boost::algorithm::range_finder(SearchRange), |
| 109 | ::boost::algorithm::const_formatter(Format)); |
| 110 | } |
| 111 | |
| 112 | // replace_first --------------------------------------------------------------------// |
| 113 |
nothing calls this directly
no test coverage detected