.. _sprout-array-array-operator-not_equal_to: ############################################################################### operator!= ############################################################################### Interface ======================================== .. sourcecode:: c++ template inline SPROUT_CONSTEXPR bool operator!=(sprout::array const& lhs, sprout::array const& rhs); Returns ======================================== | true if the contents of the containers are not equivalent, false otherwise. Examples ======================================== .. sourcecode:: c++ #include using namespace sprout; SPROUT_STATIC_CONSTEXPR auto x = array{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}; SPROUT_STATIC_CONSTEXPR auto y = array{{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}}; static_assert(x != y, "x is not equal to y."); Complexity ======================================== | Recursive function invocations in *O(logN)* (logarithmic) depth. Header ======================================== | ``sprout/array/comparison.hpp`` | Convenience header: ``sprout/array.hpp``