#ifndef PYTHONIC_INCLUDE_OPERATOR_NEG_HPP #define PYTHONIC_INCLUDE_OPERATOR_NEG_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template auto neg(A &&a) -> decltype(-std::forward(a)); DEFINE_FUNCTOR(pythonic::operator_, neg); } PYTHONIC_NS_END #endif