#ifndef PYTHONIC_INCLUDE_OPERATOR_NE_HPP #define PYTHONIC_INCLUDE_OPERATOR_NE_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto ne(A &&a, B &&b) -> decltype(std::forward(a) != std::forward(b)); bool ne(char const *a, char const *b); DEFINE_FUNCTOR(pythonic::operator_, ne); } PYTHONIC_NS_END #endif