| 133 | typename Range2T, |
| 134 | typename Range3T> |
| 135 | inline OutputIteratorT replace_first_copy( |
| 136 | OutputIteratorT Output, |
| 137 | const Range1T& Input, |
| 138 | const Range2T& Search, |
| 139 | const Range3T& Format) |
| 140 | { |
| 141 | return ::boost::algorithm::find_format_copy( |
| 142 | Output, |
| 143 | Input, |
| 144 | ::boost::algorithm::first_finder(Search), |
| 145 | ::boost::algorithm::const_formatter(Format) ); |
| 146 | } |
| 147 | |
| 148 | //! Replace first algorithm |
| 149 | /*! |
nothing calls this directly
no test coverage detected