2012-04-01 13:15:09 +00:00
|
|
|
|
#ifndef SPROUT_CSTDLIB_ABS_HPP
|
|
|
|
|
#define SPROUT_CSTDLIB_ABS_HPP
|
|
|
|
|
|
2012-05-25 13:21:16 +00:00
|
|
|
|
#include <type_traits>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
|
|
2013-03-22 05:24:19 +00:00
|
|
|
|
// 7.20.6.1 abs<62>Clabs<62>C<EFBFBD>y<EFBFBD><79> llabs <20><EFBFBD>
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR int
|
|
|
|
|
abs(int j) {
|
2012-04-01 13:15:09 +00:00
|
|
|
|
return j < 0 ? -j : j;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
|
labs(long j) {
|
2012-04-01 13:15:09 +00:00
|
|
|
|
return j < 0 ? -j : j;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
|
llabs(long long j) {
|
2012-04-01 13:15:09 +00:00
|
|
|
|
return j < 0 ? -j : j;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR long
|
|
|
|
|
abs(long j) {
|
2012-05-05 06:57:55 +00:00
|
|
|
|
return sprout::labs(j);
|
2012-04-01 13:15:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR long long
|
|
|
|
|
abs(long long j) {
|
2012-05-05 06:57:55 +00:00
|
|
|
|
return sprout::llabs(j);
|
2012-04-01 13:15:09 +00:00
|
|
|
|
}
|
2012-05-25 13:21:16 +00:00
|
|
|
|
|
2012-05-26 10:19:08 +00:00
|
|
|
|
namespace {
|
2012-12-17 11:10:17 +00:00
|
|
|
|
template<typename IntType>
|
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
|
std::is_integral<IntType>::value && std::is_signed<IntType>::value,
|
|
|
|
|
IntType
|
|
|
|
|
>::type
|
2012-10-05 15:58:56 +00:00
|
|
|
|
abs(IntType j) {
|
2012-05-26 10:19:08 +00:00
|
|
|
|
return j < 0 ? -j : j;
|
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
|
|
|
|
|
|
template<typename IntType>
|
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
|
std::is_integral<IntType>::value && std::is_unsigned<IntType>::value,
|
|
|
|
|
IntType
|
|
|
|
|
>::type
|
2012-10-05 15:58:56 +00:00
|
|
|
|
abs(IntType j) {
|
2012-05-26 10:19:08 +00:00
|
|
|
|
return j;
|
|
|
|
|
}
|
|
|
|
|
} // anonymous-namespace
|
2012-04-01 13:15:09 +00:00
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTDLIB_ABS_HPP
|