omni::operator!=

Defined in omni/Vector.h

template<class T>
inline bool omni::operator!=(const vector<T> &lhs, const vector<T> &rhs)

Compares the contents of two vectors for inequality.

Vectors must have differing number of elements or at least one element in lhs compares in-equal with the element in rhs at the same position.

Parameters
  • lhs – Vector whose contents to compare.

  • rhs – Vector whose contents to compare.

Returns

false if the contents of the vectors are equal, true otherwise.