...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::algorithm::equal
// In header: <boost/algorithm/cxx14/equal.hpp> template<typename InputIterator1, typename InputIterator2, typename BinaryPredicate> BOOST_CXX14_CONSTEXPR bool equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, BinaryPredicate pred);
Parameters: |
|
||||||||||
Returns: |
true if all elements in the two ranges are equal |