2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-05-09 01:15:19 +00:00
|
|
|
#ifndef SPROUT_MATH_ABS_HPP
|
|
|
|
#define SPROUT_MATH_ABS_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-05-26 15:43:38 +00:00
|
|
|
#include <sprout/type_traits/enabler_if.hpp>
|
2012-06-23 04:22:50 +00:00
|
|
|
#include <sprout/math/detail/config.hpp>
|
2013-05-05 15:22:08 +00:00
|
|
|
#include <sprout/math/fabs.hpp>
|
2012-05-09 01:15:19 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace math {
|
2013-10-25 03:29:16 +00:00
|
|
|
//
|
|
|
|
// abs
|
|
|
|
//
|
2012-05-09 01:15:19 +00:00
|
|
|
template<
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR FloatType
|
|
|
|
abs(FloatType x) {
|
2013-10-25 03:29:16 +00:00
|
|
|
return sprout::math::fabs(x);
|
2012-05-09 01:15:19 +00:00
|
|
|
}
|
|
|
|
} // namespace math
|
|
|
|
|
|
|
|
using sprout::math::abs;
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_ABS_HPP
|