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