#pragma once #include #define ULL unsigned long long #define LD long double constexpr ULL operator""_kB(const ULL BYTES) { return BYTES * 1024; } constexpr ULL operator""_MB(const ULL BYTES) { return BYTES * 1024 * 1024; } constexpr ULL operator""_GB(const ULL BYTES) { return BYTES * 1024 * 1024 * 1024; } constexpr ULL operator""_TB(const ULL BYTES) { return BYTES * 1024 * 1024 * 1024 * 1024; } constexpr LD operator""_kB(const LD BYTES) { return BYTES * 1024; } constexpr LD operator""_MB(const LD BYTES) { return BYTES * 1024 * 1024; } constexpr LD operator""_GB(const LD BYTES) { return BYTES * 1024 * 1024 * 1024; } constexpr LD operator""_TB(const LD BYTES) { return BYTES * 1024 * 1024 * 1024 * 1024; } template using __acceptable_byte_operation_type = typename std::enable_if::value || std::is_trivially_constructible::value>::type; template > constexpr X kBtoBytes(const X kB) { return kB * 1024; } template > constexpr X MBtoBytes(const X MB) { return MB * 1024 * 1024; } template > constexpr X GBtoBytes(const X GB) { return GB * 1024 * 1024 * 1024; } template > constexpr X TBtoBytes(const X TB) { return TB * 1024 * 1024 * 1024 * 1024; } #undef ULL #undef LD