| 188 | typename Range1T, |
| 189 | typename Range2T> |
| 190 | inline OutputIteratorT ierase_first_copy( |
| 191 | OutputIteratorT Output, |
| 192 | const Range1T& Input, |
| 193 | const Range2T& Search, |
| 194 | const std::locale& Loc=std::locale() ) |
| 195 | { |
| 196 | return ::boost::algorithm::find_format_copy( |
| 197 | Output, |
| 198 | Input, |
| 199 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 200 | ::boost::algorithm::empty_formatter(Input) ); |
| 201 | } |
| 202 | |
| 203 | //! Erase first algorithm ( case insensitive ) |
| 204 | /*! |
nothing calls this directly
no test coverage detected