%PDF- %PDF-
| Direktori : /lib/python3/dist-packages/pythran/pythonic/math/ |
| Current File : //lib/python3/dist-packages/pythran/pythonic/math/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