Sprout/sprout/cstdlib/abs.hpp

55 lines
1.2 KiB
C++
Raw Normal View History

2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTDLIB_ABS_HPP
#define SPROUT_CSTDLIB_ABS_HPP
#include <type_traits>
2012-04-01 13:15:09 +00:00
#include <sprout/config.hpp>
#include <sprout/utility/enabler_if.hpp>
2012-04-01 13:15:09 +00:00
namespace sprout {
// Copyright (C) 2011 RiSK (sscrisk)
// 7.20.6.1 abs<62>Clabs<62>C<EFBFBD>y<EFBFBD><79> llabs <20>֐<EFBFBD>
SPROUT_CONSTEXPR int abs(int j) {
return j < 0 ? -j : j;
}
SPROUT_CONSTEXPR long labs(long j) {
return j < 0 ? -j : j;
}
SPROUT_CONSTEXPR long long llabs(long long j) {
return j < 0 ? -j : j;
}
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
}
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-26 10:19:08 +00:00
namespace {
template<
typename IntType,
typename sprout::enabler_if<
std::is_integral<IntType>::value && std::is_signed<IntType>::value
>::type = sprout::enabler
>
SPROUT_CONSTEXPR IntType abs(IntType j) {
return j < 0 ? -j : j;
}
template<
typename IntType,
typename sprout::enabler_if<
std::is_integral<IntType>::value && std::is_unsigned<IntType>::value
>::type = sprout::enabler
>
SPROUT_CONSTEXPR IntType abs(IntType j) {
return j;
}
} // anonymous-namespace
2012-04-01 13:15:09 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_CSTDLIB_ABS_HPP