| 87 | */ |
| 88 | template<class InputIterator, class T> |
| 89 | inline bool any( InputIterator first, InputIterator last, const T& value){ |
| 90 | return __any( first, last, value, typename std::iterator_traits<InputIterator>::iterator_category() ) ; |
| 91 | } |
| 92 | |
| 93 | |
| 94 |
no test coverage detected