MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / ireplace_first_copy

Function ireplace_first_copy

include/win/boost/algorithm/string/replace.hpp:210–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 typename Range2T,
209 typename Range3T>
210 inline OutputIteratorT ireplace_first_copy(
211 OutputIteratorT Output,
212 const Range1T& Input,
213 const Range2T& Search,
214 const Range3T& Format,
215 const std::locale& Loc=std::locale() )
216 {
217 return ::boost::algorithm::find_format_copy(
218 Output,
219 Input,
220 ::boost::algorithm::first_finder(Search, is_iequal(Loc)),
221 ::boost::algorithm::const_formatter(Format) );
222 }
223
224 //! Replace first algorithm ( case insensitive )
225 /*!

Callers

nothing calls this directly

Calls 4

find_format_copyFunction · 0.85
first_finderFunction · 0.85
is_iequalClass · 0.85
const_formatterFunction · 0.85

Tested by

no test coverage detected