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