|
Header <boost/algorithm/cxx11/any_of.hpp>Boost , The Boost Algorithm Library , Reference
Тестовые диапазоны, чтобы увидеть, соответствуют ли какие-либо элементы значению или предикату. Маршалл Клоу namespace boost {
namespace algorithm {
template<typename InputIterator, typename Predicate>
bool any_of(InputIterator, InputIterator, Predicate);
template<typename Range, typename Predicate>
bool any_of(const Range &, Predicate);
template<typename InputIterator, typename V>
bool any_of_equal(InputIterator, InputIterator, const V &);
template<typename Range, typename V>
bool any_of_equal(const Range &, const V &);
}
}
Статья Header <boost/algorithm/cxx11/any_of.hpp> раздела The Boost Algorithm Library Reference может быть полезна для разработчиков на c++ и boost.
:: Главная :: Reference ::
|
|