Sprout/sprout/math/lround.hpp

39 lines
976 B
C++
Raw Normal View History

2012-07-04 23:03:32 +00:00
#ifndef SPROUT_MATH_LROUND_HPP
#define SPROUT_MATH_LROUND_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/math/detail/config.hpp>
2013-02-10 02:54:54 +00:00
#include <sprout/math/iround.hpp>
2012-07-04 23:03:32 +00:00
#include <sprout/type_traits/enabler_if.hpp>
namespace sprout {
namespace math {
namespace detail {
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR long
lround(FloatType x) {
2013-04-23 10:03:03 +00:00
return sprout::iround<long>(x);
2012-07-04 23:03:32 +00:00
}
template<
typename IntType,
typename sprout::enabler_if<std::is_integral<IntType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR long
lround(IntType x) {
2013-04-23 10:03:03 +00:00
return sprout::iround<long>(x);
2012-07-04 23:03:32 +00:00
}
} // namespace detail
2012-07-04 23:03:32 +00:00
using NS_SPROUT_MATH_DETAIL::lround;
} // namespace math
using sprout::math::lround;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_LROUND_HPP