| 172 | */ |
| 173 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 174 | inline void replace_first( |
| 175 | SequenceT& Input, |
| 176 | const Range1T& Search, |
| 177 | const Range2T& Format ) |
| 178 | { |
| 179 | ::boost::algorithm::find_format( |
| 180 | Input, |
| 181 | ::boost::algorithm::first_finder(Search), |
| 182 | ::boost::algorithm::const_formatter(Format) ); |
| 183 | } |
| 184 | |
| 185 | // replace_first ( case insensitive ) ---------------------------------------------// |
| 186 |
nothing calls this directly
no test coverage detected