chsvlib
chsv helper source code

◆ operator!=()

auto operator!= ( const matrix_column< MatrixType > &  right) const -> decltype(std::declval<T>() == std::declval<T>())
noexcept

Compares two matrix columns for inequality of their respective elements.

Template Parameters
TUsed to conditionally specialize the template only for elements that are EqualityComparable.
Parameters
rightA matrix column to compare with.
Returns
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).