#include <cstdint>
#include <cstring>
+#include <type_traits>
namespace folly {
return a < b ? a : b;
}
+namespace detail {
+
+template <typename T, typename = void>
+struct constexpr_abs_helper {};
+
+template <typename T>
+struct constexpr_abs_helper<
+ T,
+ typename std::enable_if<std::is_floating_point<T>::value>::type> {
+ static constexpr T go(T t) {
+ return t < static_cast<T>(0) ? -t : t;
+ }
+};
+
+template <typename T>
+struct constexpr_abs_helper<
+ T,
+ typename std::enable_if<
+ std::is_integral<T>::value && !std::is_same<T, bool>::value &&
+ std::is_unsigned<T>::value>::type> {
+ static constexpr T go(T t) {
+ return t;
+ }
+};
+
+template <typename T>
+struct constexpr_abs_helper<
+ T,
+ typename std::enable_if<
+ std::is_integral<T>::value && !std::is_same<T, bool>::value &&
+ std::is_signed<T>::value>::type> {
+ static constexpr typename std::make_unsigned<T>::type go(T t) {
+ return t < static_cast<T>(0) ? -t : t;
+ }
+};
+}
+
+template <typename T>
+constexpr auto constexpr_abs(T t)
+ -> decltype(detail::constexpr_abs_helper<T>::go(t)) {
+ return detail::constexpr_abs_helper<T>::go(t);
+}
+
#ifdef _MSC_VER
constexpr size_t constexpr_strlen_internal(const char* s, size_t len) {
return *s == '\0' ? len : constexpr_strlen_internal(s + 1, len + 1);
--- /dev/null
+/*
+ * Copyright 2016 Facebook, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <folly/portability/Constexpr.h>
+
+#include <gtest/gtest.h>
+
+namespace {
+
+class ConstexprTest : public testing::Test {};
+}
+
+TEST_F(ConstexprTest, constexpr_abs_unsigned) {
+ constexpr auto v = uint32_t(17);
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17, a);
+ EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_signed_positive) {
+ constexpr auto v = int32_t(17);
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17, a);
+ EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_signed_negative) {
+ constexpr auto v = int32_t(-17);
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17, a);
+ EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_float_positive) {
+ constexpr auto v = 17.5f;
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17.5, a);
+ EXPECT_TRUE((std::is_same<const float, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_float_negative) {
+ constexpr auto v = -17.5f;
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17.5, a);
+ EXPECT_TRUE((std::is_same<const float, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_double_positive) {
+ constexpr auto v = 17.5;
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17.5, a);
+ EXPECT_TRUE((std::is_same<const double, decltype(a)>::value));
+}
+
+TEST_F(ConstexprTest, constexpr_abs_double_negative) {
+ constexpr auto v = -17.5;
+ constexpr auto a = folly::constexpr_abs(v);
+ EXPECT_EQ(17.5, a);
+ EXPECT_TRUE((std::is_same<const double, decltype(a)>::value));
+}