%PDF- %PDF-
| Direktori : /lib/python3/dist-packages/pythran/pythonic/operator_/ |
| Current File : //lib/python3/dist-packages/pythran/pythonic/operator_/invert.hpp |
#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 <class A>
auto invert(A &&a) -> decltype(~std::forward<A>(a))
{
return ~std::forward<A>(a);
}
}
PYTHONIC_NS_END
#endif