| 208 | typename Range2T, |
| 209 | typename Range3T> |
| 210 | inline OutputIteratorT ireplace_first_copy( |
| 211 | OutputIteratorT Output, |
| 212 | const Range1T& Input, |
| 213 | const Range2T& Search, |
| 214 | const Range3T& Format, |
| 215 | const std::locale& Loc=std::locale() ) |
| 216 | { |
| 217 | return ::boost::algorithm::find_format_copy( |
| 218 | Output, |
| 219 | Input, |
| 220 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 221 | ::boost::algorithm::const_formatter(Format) ); |
| 222 | } |
| 223 | |
| 224 | //! Replace first algorithm ( case insensitive ) |
| 225 | /*! |
nothing calls this directly
no test coverage detected