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