| 227 | */ |
| 228 | template<typename SequenceT, typename RangeT> |
| 229 | inline void ierase_first( |
| 230 | SequenceT& Input, |
| 231 | const RangeT& Search, |
| 232 | const std::locale& Loc=std::locale() ) |
| 233 | { |
| 234 | ::boost::algorithm::find_format( |
| 235 | Input, |
| 236 | ::boost::algorithm::first_finder(Search, is_iequal(Loc)), |
| 237 | ::boost::algorithm::empty_formatter(Input) ); |
| 238 | } |
| 239 | |
| 240 | // erase_last --------------------------------------------------------// |
| 241 |
nothing calls this directly
no test coverage detected