MCPcopy Create free account
hub / github.com/ablab/spades / ierase_first_copy

Function ierase_first_copy

ext/include/boost/algorithm/string/erase.hpp:190–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188 typename Range1T,
189 typename Range2T>
190 inline OutputIteratorT ierase_first_copy(
191 OutputIteratorT Output,
192 const Range1T& Input,
193 const Range2T& Search,
194 const std::locale& Loc=std::locale() )
195 {
196 return ::boost::algorithm::find_format_copy(
197 Output,
198 Input,
199 ::boost::algorithm::first_finder(Search, is_iequal(Loc)),
200 ::boost::algorithm::empty_formatter(Input) );
201 }
202
203 //! Erase first algorithm ( case insensitive )
204 /*!

Callers

nothing calls this directly

Calls 4

find_format_copyFunction · 0.85
first_finderFunction · 0.85
is_iequalClass · 0.85
empty_formatterFunction · 0.85

Tested by

no test coverage detected