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