...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Return true
if two arrays are equal.
Defined in header <boost/json/array.hpp>
bool operator==(array
const& lhs,array
const& rhs) noexcept;
Arrays are equal when their sizes are the same, and they are element-for-element equal in order.
return std::equal( lhs.begin(), lhs.end(), rhs.begin(), rhs.end() );
Constant or linear in lhs.size()
.
No-throw guarantee.
Convenience header <boost/json.hpp>