#ifndef PYTHONIC_MATH_FLOOR_HPP #define PYTHONIC_MATH_FLOOR_HPP #include "pythonic/include/math/floor.hpp" #include "pythonic/utils/functor.hpp" #include PYTHONIC_NS_BEGIN namespace math { template long floor(T x) { return std::floor(x); } } PYTHONIC_NS_END #endif