2020-03-09 23:11:51 -04:00
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstdlib>
|
2020-09-29 21:24:35 -04:00
|
|
|
#include <ostream>
|
2020-03-09 23:11:51 -04:00
|
|
|
#include <new>
|
|
|
|
|
2022-06-07 16:03:55 +02:00
|
|
|
constexpr static const uint64_t UNSIGNED_NEEDS_ULL_SUFFIX = 9223372036854775808ull;
|
2020-03-11 09:58:10 -04:00
|
|
|
|
2022-04-21 13:07:15 +02:00
|
|
|
constexpr static const uint64_t UNSIGNED_DOESNT_NEED_ULL_SUFFIX = 8070450532247928832;
|
2020-03-11 09:58:10 -04:00
|
|
|
|
2022-06-07 16:03:55 +02:00
|
|
|
constexpr static const int64_t SIGNED_NEEDS_ULL_SUFFIX = -9223372036854775808ull;
|
2020-10-05 19:43:15 +03:00
|
|
|
|
2022-04-21 13:07:15 +02:00
|
|
|
constexpr static const int64_t SIGNED_DOESNT_NEED_ULL_SUFFIX = -9223372036854775807;
|