| 844 | typename Range1T, |
| 845 | typename Range2T> |
| 846 | inline OutputIteratorT replace_tail_copy( |
| 847 | OutputIteratorT Output, |
| 848 | const Range1T& Input, |
| 849 | int N, |
| 850 | const Range2T& Format ) |
| 851 | { |
| 852 | return ::boost::algorithm::find_format_copy( |
| 853 | Output, |
| 854 | Input, |
| 855 | ::boost::algorithm::tail_finder(N), |
| 856 | ::boost::algorithm::const_formatter(Format) ); |
| 857 | } |
| 858 | |
| 859 | //! Replace tail algorithm |
| 860 | /*! |
nothing calls this directly
no test coverage detected