#ifndef PYTHONIC_INCLUDE_OPERATOR_ISNOT_HPP #define PYTHONIC_INCLUDE_OPERATOR_ISNOT_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto is_not(A &&a, B &&b) -> decltype(builtins::id(std::forward(a)) != builtins::id(std::forward(b))); DEFINE_FUNCTOR(pythonic::operator_, is_not); } PYTHONIC_NS_END #endif