#ifndef PYTHONIC_INCLUDE_OPERATOR_NOT_HPP #define PYTHONIC_INCLUDE_OPERATOR_NOT_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto not_(T &&a) -> decltype(!std::forward(a)); template bool not_(std::complex const &a); DEFINE_FUNCTOR(pythonic::operator_, not_); } PYTHONIC_NS_END #endif