#ifndef PYTHONIC_BUILTIN_DICT_VALUES_HPP #define PYTHONIC_BUILTIN_DICT_VALUES_HPP #include "pythonic/include/builtins/dict/values.hpp" #include "pythonic/types/dict.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { namespace dict { template auto values(D &&d) -> decltype(std::forward(d).values()) { return std::forward(d).values(); } } } PYTHONIC_NS_END #endif