|
noexcept |
Compares two matrix columns for inequality of their respective elements.
T | Used to conditionally specialize the template only for elements that are EqualityComparable. |
right | A matrix column to compare with. |
true
, if the two columns not equal in sizes or in their respective elements. Otherwise, the return value is false
.If A
and B
are matrix columns, that the expression A != B
is equivalent to the invocation !(A == B)
.