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