| 887 | */ |
| 888 | template<typename SequenceT, typename RangeT> |
| 889 | inline void replace_tail( |
| 890 | SequenceT& Input, |
| 891 | int N, |
| 892 | const RangeT& Format ) |
| 893 | { |
| 894 | ::boost::algorithm::find_format( |
| 895 | Input, |
| 896 | ::boost::algorithm::tail_finder(N), |
| 897 | ::boost::algorithm::const_formatter(Format) ); |
| 898 | } |
| 899 | |
| 900 | } // namespace algorithm |
| 901 |
nothing calls this directly
no test coverage detected