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