1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
/// \file
// Range v3 library
//
// Copyright Eric Niebler 2019-present
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/ericniebler/range-v3
//
#ifndef RANGES_V3_ITERATOR_DIFFMAX_T_HPP
#define RANGES_V3_ITERATOR_DIFFMAX_T_HPP
#include <cstdint>
#include <iosfwd>
#include <limits>
#include <concepts/concepts.hpp>
#include <range/v3/range_fwd.hpp>
#include <range/v3/iterator/concepts.hpp>
#include <range/v3/detail/prologue.hpp>
RANGES_DIAGNOSTIC_PUSH
RANGES_DIAGNOSTIC_IGNORE_UNSIGNED_MATH
namespace ranges
{
/// \cond
namespace detail
{
struct diffmax_t
{
private:
bool neg_;
std::uintmax_t val_;
struct tag
{};
constexpr diffmax_t(tag, bool neg, std::uintmax_t val)
: neg_(val && neg)
, val_(val)
{}
/// \cond
constexpr void _check()
{
RANGES_ENSURE(!neg_ || val_);
}
static constexpr diffmax_t _normalize(bool neg, std::uintmax_t val)
{
return diffmax_t{tag{}, val && neg, val};
}
/// \endcond
public:
diffmax_t() = default;
template(typename T)(
requires integral<T>)
constexpr diffmax_t(T val) noexcept
: neg_(0 > val)
, val_(0 > val ? static_cast<std::uintmax_t>(-val)
: static_cast<std::uintmax_t>(val))
{}
friend constexpr bool operator<(diffmax_t a, diffmax_t b) noexcept
{
a._check();
b._check();
return a.neg_ ? (b.neg_ ? a.val_ > b.val_ : true)
: (b.neg_ ? false : a.val_ < b.val_);
}
friend constexpr bool operator>(diffmax_t a, diffmax_t b) noexcept
{
return b < a;
}
friend constexpr bool operator<=(diffmax_t a, diffmax_t b) noexcept
{
return !(b < a);
}
friend constexpr bool operator>=(diffmax_t a, diffmax_t b) noexcept
{
return !(a < b);
}
friend constexpr bool operator==(diffmax_t a, diffmax_t b) noexcept
{
a._check();
b._check();
return a.val_ == b.val_ && a.neg_ == b.neg_;
}
friend constexpr bool operator!=(diffmax_t a, diffmax_t b) noexcept
{
return !(a == b);
}
friend constexpr diffmax_t operator+(diffmax_t a) noexcept
{
return a;
}
friend constexpr diffmax_t operator-(diffmax_t a) noexcept
{
return _normalize(!a.neg_, a.val_);
}
friend constexpr diffmax_t operator+(diffmax_t a, diffmax_t b) noexcept
{
return a.neg_ == b.neg_
? diffmax_t{tag{}, a.neg_, a.val_ + b.val_}
: (a.neg_ ? (a.val_ > b.val_
? diffmax_t{tag{}, true, a.val_ - b.val_}
: diffmax_t{tag{}, false, b.val_ - a.val_})
: (b.val_ > a.val_
? diffmax_t{tag{}, true, b.val_ - a.val_}
: diffmax_t{tag{}, false, a.val_ - b.val_}));
}
friend constexpr diffmax_t operator-(diffmax_t a, diffmax_t b) noexcept
{
return a + -b;
}
friend constexpr diffmax_t operator*(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(a.neg_ ^ b.neg_, a.val_ * b.val_);
}
friend constexpr diffmax_t operator/(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(a.neg_ ^ b.neg_, a.val_ / b.val_);
}
friend constexpr diffmax_t operator%(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(a.neg_, a.val_ % b.val_);
}
static constexpr std::uintmax_t compl_if(bool neg,
std::uintmax_t val) noexcept
{
return neg ? ~val + 1 : val;
}
friend constexpr diffmax_t operator&(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(
a.neg_ && b.neg_,
compl_if(a.neg_ && b.neg_,
compl_if(a.neg_, a.val_) & compl_if(b.neg_, b.val_)));
}
friend constexpr diffmax_t operator|(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(
a.neg_ || b.neg_,
compl_if(a.neg_ || b.neg_,
compl_if(a.neg_, a.val_) | compl_if(b.neg_, b.val_)));
}
friend constexpr diffmax_t operator^(diffmax_t a, diffmax_t b) noexcept
{
return _normalize(
bool(a.neg_ ^ b.neg_),
compl_if(bool(a.neg_ ^ b.neg_),
compl_if(a.neg_, a.val_) ^ compl_if(b.neg_, b.val_)));
}
friend constexpr diffmax_t operator<<(diffmax_t a, diffmax_t b) noexcept
{
RANGES_ENSURE(!a.neg_);
return b.neg_ ? diffmax_t{tag{}, false, a.val_ >> b.val_}
: diffmax_t{tag{}, false, a.val_ << b.val_};
}
friend constexpr diffmax_t operator>>(diffmax_t a, diffmax_t b) noexcept
{
return b.neg_ ? diffmax_t{tag{}, a.neg_, a.val_ << b.val_}
: diffmax_t{tag{}, a.neg_, a.val_ >> b.val_};
}
friend constexpr diffmax_t & operator+=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a + b);
}
friend constexpr diffmax_t & operator-=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a - b);
}
friend constexpr diffmax_t & operator*=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a * b);
}
friend constexpr diffmax_t & operator/=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a / b);
}
friend constexpr diffmax_t & operator%=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a % b);
}
friend constexpr diffmax_t & operator&=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a & b);
}
friend constexpr diffmax_t & operator|=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a | b);
}
friend constexpr diffmax_t & operator^=(diffmax_t & a, diffmax_t b) noexcept
{
return (a = a ^ b);
}
friend constexpr diffmax_t & operator<<=(diffmax_t & a, diffmax_t b) noexcept
{
a = (a << b);
return a;
}
friend constexpr diffmax_t & operator>>=(diffmax_t & a, diffmax_t b) noexcept
{
a = (a >> b);
return a;
}
template<typename T>
friend constexpr auto operator+=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} + b));
}
template<typename T>
friend constexpr auto operator-=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} - b));
}
template<typename T>
friend constexpr auto operator*=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} * b));
}
template<typename T>
friend constexpr auto operator/=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} / b));
}
template<typename T>
friend constexpr auto operator%=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} % b));
}
template<typename T>
friend constexpr auto operator&=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} & b));
}
template<typename T>
friend constexpr auto operator|=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} | b));
}
template<typename T>
friend constexpr auto operator^=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
return (a = static_cast<T>(diffmax_t{a} ^ b));
}
template<typename T>
friend constexpr auto operator<<=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
a = static_cast<T>(diffmax_t{a} << b);
return a;
}
template<typename T>
friend constexpr auto operator>>=(T & a, diffmax_t b) noexcept
-> CPP_broken_friend_ret(T &)(
requires integral<T>)
{
a = static_cast<T>(diffmax_t{a} >> b);
return a;
}
friend constexpr diffmax_t & operator++(diffmax_t & a) noexcept
{
a.neg_ = (a.neg_ ? --a.val_ : ++a.val_) && a.neg_;
return a;
}
friend constexpr diffmax_t & operator--(diffmax_t & a) noexcept
{
a.neg_ = (a.neg_ ? ++a.val_ : --a.val_) && a.neg_;
return a;
}
friend constexpr diffmax_t operator++(diffmax_t & a, int) noexcept
{
auto tmp = a;
++a;
return tmp;
}
friend constexpr diffmax_t operator--(diffmax_t & a, int) noexcept
{
auto tmp = a;
--a;
return tmp;
}
template(typename T)(
requires integral<T>)
constexpr explicit
operator T() const noexcept
{
return neg_ ? -static_cast<T>(val_) : static_cast<T>(val_);
}
constexpr explicit operator bool() const noexcept
{
return val_ != 0;
}
constexpr bool operator!() const noexcept
{
return val_ == 0;
}
template<typename Ostream>
friend auto operator<<(Ostream & sout, diffmax_t a)
-> CPP_broken_friend_ret(std::ostream &)(
requires derived_from<
Ostream, std::basic_ostream<typename Ostream::char_type,
typename Ostream::traits_type>>)
{
return sout << (&"-"[!a.neg_]) << a.val_;
}
};
#if RANGES_CXX_INLINE_VARIABLES >= RANGES_CXX_INLINE_VARIABLES_17
template<>
inline constexpr bool _is_integer_like_<diffmax_t> = true;
#else
template<typename Enable>
constexpr bool _is_integer_like_<diffmax_t, Enable> = true;
#endif
} // namespace detail
/// \endcond
} // namespace ranges
/// \cond
RANGES_DIAGNOSTIC_IGNORE_MISMATCHED_TAGS
namespace std
{
template<>
struct numeric_limits<::ranges::detail::diffmax_t>
{
static constexpr bool is_specialized = true;
static constexpr bool is_signed = true;
static constexpr bool is_integer = true;
static constexpr bool is_exact = true;
static constexpr bool has_infinity = false;
static constexpr bool has_quiet_NaN = false;
static constexpr bool has_signaling_NaN = false;
static constexpr bool has_denorm = false;
static constexpr bool has_denorm_loss = false;
static constexpr std::float_round_style round_style = std::round_toward_zero;
static constexpr bool is_iec559 = false;
static constexpr bool is_bounded = true;
static constexpr bool is_modulo = false;
static constexpr int digits = CHAR_BIT * sizeof(std::uintmax_t) + 1;
static constexpr int digits10 =
static_cast<int>(digits * 0.301029996); // digits * std::log10(2)
static constexpr int max_digits10 = 0;
static constexpr int radix = 2;
static constexpr int min_exponent = 0;
static constexpr int min_exponent10 = 0;
static constexpr int max_exponent = 0;
static constexpr int max_exponent10 = 0;
static constexpr bool traps = true;
static constexpr bool tinyness_before = false;
static constexpr ::ranges::detail::diffmax_t max() noexcept
{
return std::uintmax_t(-1);
}
static constexpr ::ranges::detail::diffmax_t min() noexcept
{
return -max();
}
static constexpr ::ranges::detail::diffmax_t lowest() noexcept
{
return min();
}
static constexpr ::ranges::detail::diffmax_t epsilon() noexcept
{
return 0;
}
static constexpr ::ranges::detail::diffmax_t round_error() noexcept
{
return 0;
}
static constexpr ::ranges::detail::diffmax_t infinity() noexcept
{
return 0;
}
static constexpr ::ranges::detail::diffmax_t quiet_NaN() noexcept
{
return 0;
}
static constexpr ::ranges::detail::diffmax_t signaling_NaN() noexcept
{
return 0;
}
static constexpr ::ranges::detail::diffmax_t denorm_min() noexcept
{
return 0;
}
};
template<>
struct numeric_limits<::ranges::detail::diffmax_t const>
: numeric_limits<::ranges::detail::diffmax_t>
{};
template<>
struct numeric_limits<::ranges::detail::diffmax_t volatile>
: numeric_limits<::ranges::detail::diffmax_t>
{};
template<>
struct numeric_limits<::ranges::detail::diffmax_t const volatile>
: numeric_limits<::ranges::detail::diffmax_t>
{};
#if RANGES_CXX_INLINE_VARIABLES >= RANGES_CXX_INLINE_VARIABLES_17
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_specialized;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_signed;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_integer;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_exact;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::has_infinity;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::has_quiet_NaN;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::has_signaling_NaN;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::has_denorm;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::has_denorm_loss;
inline constexpr std::float_round_style
numeric_limits<::ranges::detail::diffmax_t>::round_style;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_iec559;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_bounded;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::is_modulo;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::digits;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::digits10;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::max_digits10;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::radix;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::min_exponent;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::min_exponent10;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::max_exponent;
inline constexpr int numeric_limits<::ranges::detail::diffmax_t>::max_exponent10;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::traps;
inline constexpr bool numeric_limits<::ranges::detail::diffmax_t>::tinyness_before;
#endif
} // namespace std
/// \endcond
RANGES_DIAGNOSTIC_POP
#include <range/v3/detail/epilogue.hpp>
#endif
|