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