Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to define an exabyte constant in Swift

1 Answer

0 votes
/*
    Swift's UInt64 type is an unsigned 64‑bit integer.
    Maximum value: 18_446_744_073_709_551_615  (~1.84 × 10^19)

    Exabyte sizes:

        1 EiB = 2^60  = 1_152_921_504_606_846_976 bytes
        1 EB  = 10^18 = 1_000_000_000_000_000_000 bytes

    Both values fit safely inside UInt64.
*/

// Binary exabyte (exbibyte), using a bit shift.
// 1 << 60 = 2^60 bytes.
let EXABYTE_EIB: UInt64 = 1 << 60

// Decimal exabyte (SI), using a readable numeric literal.
let EXABYTE_EB: UInt64 = 1_000_000_000_000_000_000

print("1 EiB = \(EXABYTE_EIB) bytes")
print("1 EB  = \(EXABYTE_EB) bytes")



/*
run:

1 EiB = 1152921504606846976 bytes
1 EB  = 1000000000000000000 bytes

*/

 



answered May 3 by avibootz
...