CNL  2.0.2 (development)
Compositional Numeric Library
abs.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_CMATH_ABS_H)
8 #define CNL_IMPL_CMATH_ABS_H
9 
10 #include "../numbers/signedness.h"
11 
12 namespace cnl {
13  namespace _impl {
14  template<typename T>
15  requires(numbers::signedness_v<T>)
16  [[nodiscard]] constexpr auto abs(T const& value)
17  {
18  static_assert(std::is_same<decltype(+value), decltype(-value)>::value);
19 
20  return static_cast<T>((value < 0) ? -value : +value);
21  }
22 
23  template<typename T>
24  requires(!numbers::signedness_v<T>)
25  [[nodiscard]] constexpr auto abs(T const& value)
26  {
27  return value;
28  }
29  }
30 }
31 
32 #endif // CNL_IMPL_CMATH_ABS_H
std::is_same
cnl
compositional numeric library
Definition: abort.h:15
cnl::abs
constexpr auto abs(scaled_integer< Rep, Scale > const &x) noexcept -> decltype(-x)
absolute value
Definition: extras.h:43