#ifndef PYTHONIC_DISPATCH_POP_HPP #define PYTHONIC_DISPATCH_POP_HPP #include "pythonic/include/__dispatch__/pop.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace __dispatch__ { template auto pop(Any &&any, Arg0 &&... arg0) -> decltype(any.pop(std::forward(arg0)...)) { return any.pop(std::forward(arg0)...); } } PYTHONIC_NS_END #endif