| 251 | */ |
| 252 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 253 | inline void ireplace_first( |
| 254 | SequenceT& Input, |
| 255 | const Range1T& Search, |
| 256 | const Range2T& Format, |
| 257 | const std::locale& Loc=std::locale() ) |
| 258 | { |
| 259 | ::boost::algorithm::find_format( |
| 260 | Input, |
| 261 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 262 | ::boost::algorithm::const_formatter(Format) ); |
| 263 | } |
| 264 | |
| 265 | // replace_last --------------------------------------------------------------------// |
| 266 |
nothing calls this directly
no test coverage detected