CNL
2.0.2 (development)
Compositional Numeric Library
lowest.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_LIMITS_LOWEST_H)
8
#define CNL_IMPL_LIMITS_LOWEST_H
9
11
namespace
cnl
{
12
namespace
_impl {
13
// helper for numeric_limits<>::lowest()
14
template
<
class
Rep,
bool
IsSigned>
15
struct
lowest;
16
17
template
<
class
Rep>
18
struct
lowest<Rep, true> {
19
[[nodiscard]] constexpr
auto
operator()(Rep
const
& max)
const
noexcept
20
{
21
return
static_cast<
Rep
>
(-
max
);
22
}
23
};
24
25
template
<
class
Rep>
26
struct
lowest<Rep, false> {
27
[[nodiscard]] constexpr
auto
operator()(Rep
const
&)
const
noexcept
28
{
29
return
Rep{0};
30
}
31
};
32
}
33
}
34
35
#endif // CNL_IMPL_LIMITS_LOWEST_H
cnl
compositional numeric library
Definition:
abort.h:15
std::max
T max(T... args)
cnl
_impl
limits
lowest.h
Generated by
1.8.17