
please wait
|
|
|
|
std::array
class: http://en.cppreference.com/w/cpp/container/arrayoperator==
defined.operator==
: http://en.cppreference.com/w/cpp/container/array/operator_cmpChecks if the contents of lhs and rhs are equal, that is, whether each element in lhs compares equal with the element in rhs at the same position. |
T must meet the requirements of EqualityComparable in order to use overloads (1-2). |
To satisfy this requirement, types that do not have built-in comparison operators have to provide a user-defined operator==. |
bool_l4v
overloads operator==
, it should be fine.