array::operator!=
Return true
if two arrays are not equal.
Synopsis
Defined in header <boost/json/array.hpp>.
Description
Arrays are equal when their sizes are the same, and they are element-for-element equal in order.
Effects
return ! std::equal( lhs.begin(), lhs.end(), rhs.begin(), rhs.end() );
Complexity
Constant or linear in lhs.size()
.
Exception Safety
No-throw guarantee.
Convenience header <boost/json.hpp>