• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to detect endian-ness in Swift?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to detect endian-ness in Swift?


  • Subject: Re: How to detect endian-ness in Swift?
  • From: Chris Lattner <email@hidden>
  • Date: Wed, 23 Jul 2014 17:14:53 -0700

On Jul 23, 2014, at 2:59 AM, Gerriet M. Denkmann <email@hidden> wrote:

> This compiles without warnings:
>
> #if __LITTLE_ENDIAN__
> 	let encoding = NSUTF32LittleEndianStringEncoding;
> 	println("LittleEndian")
> #else
> 	let encoding = NSUTF32BigEndianStringEncoding;
> 	println("BigEndian")
> #endif
>
> But it prints "BigEndian", which probably is NOT quite right.
> How to correctly set my encoding?

Swift doesn’t currently support any big endian targets, but you can test for it with something like:

if Int(bigEndian: 42) == 42 {
    // is big endian
}

or:

if Int(littleEndian: 42) == 42 {
    // is little endian
}

These initializers for Int convert the argument in a specified endianness to the native machine endianness.

-Chris
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: How to detect endian-ness in Swift?
      • From: "Gerriet M. Denkmann" <email@hidden>
References: 
 >How to detect endian-ness in Swift? (From: "Gerriet M. Denkmann" <email@hidden>)

  • Prev by Date: Re: does Xcode 3.2.6 still run in Yosemite?
  • Next by Date: Re: How to detect endian-ness in Swift?
  • Previous by thread: Re: How to detect endian-ness in Swift?
  • Next by thread: Re: How to detect endian-ness in Swift?
  • Index(es):
    • Date
    • Thread