Sprout/sprout/math/is_integer.hpp

45 lines
1.3 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
2013-05-05 15:22:08 +00:00
#ifndef SPROUT_MATH_IS_INTEGER_HPP
#define SPROUT_MATH_IS_INTEGER_HPP
#include <type_traits>
#include <sprout/config.hpp>
#include <sprout/type_traits/enabler_if.hpp>
#include <sprout/math/isfinite.hpp>
2013-05-05 15:22:08 +00:00
#include <sprout/math/trunc.hpp>
namespace sprout {
namespace math {
namespace detail {
template<typename T>
inline SPROUT_CONSTEXPR bool
is_integer_unchecked(T x) {
return x == sprout::math::trunc(x);
}
2013-05-05 15:22:08 +00:00
template<
typename FloatType,
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR bool
is_integer(FloatType x) {
return sprout::math::isfinite(x)
&& sprout::math::detail::is_integer_unchecked(x)
;
2013-05-05 15:22:08 +00:00
}
} // namespace detail
using sprout::math::detail::is_integer;
} // namespace math
using sprout::math::is_integer;
} // namespace sprout
#endif // #ifndef SPROUT_MATH_IS_INTEGER_HPP