← Back
Editing: floor.hpp
#ifndef PYTHONIC_MATH_FLOOR_HPP #define PYTHONIC_MATH_FLOOR_HPP #include "pythonic/include/math/floor.hpp" #include "pythonic/utils/functor.hpp" #include <cmath> PYTHONIC_NS_BEGIN namespace math { template <class T> long floor(T x) { return std::floor(x); } } PYTHONIC_NS_END #endif
Save File
Cancel