#ifndef PYTHONIC_INCLUDE_BUILTIN_DICT_FROMKEYS_HPP #define PYTHONIC_INCLUDE_BUILTIN_DICT_FROMKEYS_HPP #include "pythonic/include/builtins/None.hpp" #include "pythonic/include/types/dict.hpp" #include "pythonic/include/utils/functor.hpp" #include PYTHONIC_NS_BEGIN namespace builtins { namespace dict { template types::dict::type::value_type, V> fromkeys(Iterable &&iter, V const &v = builtins::None); DEFINE_FUNCTOR(pythonic::builtins::dict, fromkeys); } } PYTHONIC_NS_END #endif