| 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 |
no test coverage detected