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

Function find_format

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

Source from the content-addressed store, hash-verified

127 typename FinderT,
128 typename FormatterT>
129 inline void find_format(
130 SequenceT& Input,
131 FinderT Finder,
132 FormatterT Formatter)
133 {
134 // Concept check
135 BOOST_CONCEPT_ASSERT((
136 FinderConcept<
137 FinderT,
138 BOOST_STRING_TYPENAME range_const_iterator<SequenceT>::type>
139 ));
140 BOOST_CONCEPT_ASSERT((
141 FormatterConcept<
142 FormatterT,
143 FinderT,BOOST_STRING_TYPENAME range_const_iterator<SequenceT>::type>
144 ));
145
146 detail::find_format_impl(
147 Input,
148 Formatter,
149 Finder(::boost::begin(Input), ::boost::end(Input)));
150 }
151
152
153// find_format_all generic ----------------------------------------------------------------//

Callers 15

erase_rangeFunction · 0.85
erase_firstFunction · 0.85
ierase_firstFunction · 0.85
erase_lastFunction · 0.85
ierase_lastFunction · 0.85
erase_nthFunction · 0.85
ierase_nthFunction · 0.85
erase_headFunction · 0.85
erase_tailFunction · 0.85
replace_rangeFunction · 0.85
replace_firstFunction · 0.85
ireplace_firstFunction · 0.85

Calls 3

find_format_implFunction · 0.85
beginFunction · 0.50
endFunction · 0.50

Tested by

no test coverage detected