| 153 | */ |
| 154 | template<class InputIterator, class Predicate> |
| 155 | inline bool any_if( InputIterator first, InputIterator last, Predicate pred){ |
| 156 | return __any_if( first, last, pred, typename std::iterator_traits<InputIterator>::iterator_category() ) ; |
| 157 | } |
| 158 | |
| 159 | } |
| 160 |
nothing calls this directly
no test coverage detected