#ifndef PYTHONIC_INCLUDE_BUILTIN_ROUND_HPP #define PYTHONIC_INCLUDE_BUILTIN_ROUND_HPP #include "pythonic/include/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { template double round(T const &v, size_t n); template double round(T const &v); DEFINE_FUNCTOR(pythonic::builtins, round); } PYTHONIC_NS_END #endif