7 #if !defined(CNL_IMPL_OVERFLOW_SATURATED_H)
8 #define CNL_IMPL_OVERFLOW_SATURATED_H
10 #include "../polarity.h"
11 #include "is_overflow_tag.h"
13 #include "overflow_operator.h"
28 : _impl::homogeneous_deduction_tag_base
29 , _impl::homogeneous_operator_tag_base {
37 template<
typename Operator>
38 struct overflow_operator<Operator, saturated_overflow_tag, polarity::positive> {
39 template<
typename Destination,
typename Source>
40 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
45 template<
class... Operands>
46 [[nodiscard]] constexpr
auto operator()(Operands
const&...)
const
52 template<
typename Operator>
53 struct overflow_operator<Operator, saturated_overflow_tag, polarity::negative> {
54 template<
typename Destination,
typename Source>
55 [[nodiscard]] constexpr
auto operator()(Source
const&)
const
60 template<
class... Operands>
61 [[nodiscard]] constexpr
auto operator()(Operands
const&...)
const
69 #endif // CNL_IMPL_OVERFLOW_SATURATED_H