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