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

Function find_format_all

include/win/boost/algorithm/string/find_format.hpp:251–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249 typename FinderT,
250 typename FormatterT >
251 inline void find_format_all(
252 SequenceT& Input,
253 FinderT Finder,
254 FormatterT Formatter )
255 {
256 // Concept check
257 BOOST_CONCEPT_ASSERT((
258 FinderConcept<
259 FinderT,
260 BOOST_STRING_TYPENAME range_const_iterator<SequenceT>::type>
261 ));
262 BOOST_CONCEPT_ASSERT((
263 FormatterConcept<
264 FormatterT,
265 FinderT,BOOST_STRING_TYPENAME range_const_iterator<SequenceT>::type>
266 ));
267
268 detail::find_format_all_impl(
269 Input,
270 Finder,
271 Formatter,
272 Finder(::boost::begin(Input), ::boost::end(Input)));
273
274 }
275
276 } // namespace algorithm
277

Callers 8

trim_all_ifFunction · 0.85
trim_fill_ifFunction · 0.85
erase_allFunction · 0.85
ierase_allFunction · 0.85
replace_allFunction · 0.85
ireplace_allFunction · 0.85
replace_all_regexFunction · 0.85
erase_all_regexFunction · 0.85

Calls 3

find_format_all_implFunction · 0.85
beginFunction · 0.50
endFunction · 0.50

Tested by

no test coverage detected