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

Function find_format

ext/include/boost/algorithm/string/find_format.hpp:128–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Tested by

no test coverage detected