Instance Property
インスタンスプロパティ
byte
byteSwapped
A representation of this integer with the byte order swapped.
この整数のバイト順交換した表現。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.0.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
var byteSwapped: Int
{ get }
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Working with Byte Order バイト順を扱う
var littleEndian : Int
The little-endian representation of this integer.
この整数のリトルエンディアン表現。
var bigEndian : Int
The big-endian representation of this integer.
この整数のビッグエンディアン表現。
init(littleEndian : Int)
Creates an integer from its little-endian representation, changing the byte order if necessary.
それのリトルエンディアン表現から整数を作成します、必要ならばバイト順を変更します。
init(bigEndian : Int)
Creates an integer from its big-endian representation, changing the byte order if necessary.
それのビッグエンディアン表現から整数を作成します、必要ならばバイト順を変更します。