| 439 | */ |
| 440 | template<typename SequenceT, typename RangeT> |
| 441 | inline void erase_nth( |
| 442 | SequenceT& Input, |
| 443 | const RangeT& Search, |
| 444 | int Nth ) |
| 445 | { |
| 446 | ::boost::algorithm::find_format( |
| 447 | Input, |
| 448 | ::boost::algorithm::nth_finder(Search, Nth), |
| 449 | ::boost::algorithm::empty_formatter(Input) ); |
| 450 | } |
| 451 | |
| 452 | // erase_nth ( case insensitive ) ---------------------------------------------// |
| 453 |
nothing calls this directly
no test coverage detected