Your IP : 216.73.217.154


Current Path : /usr/lib/python3/dist-packages/pythran/pythonic/builtins/dict/
Upload File :
Current File : //usr/lib/python3/dist-packages/pythran/pythonic/builtins/dict/values.hpp

#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 <class D>
    auto values(D &&d) -> decltype(std::forward<D>(d).values())
    {
      return std::forward<D>(d).values();
    }
  }
}
PYTHONIC_NS_END

#endif