Instance Property
インスタンスプロパティ
words
A collection containing the words of this value’s binary representation, in order from the least significant to most significant.
この値の持つバイナリ表現の単語いくらかを含んでいるコレクション、最下位から最上位への順番で。
Required.
必須。
Technology
- Swift Standard Library
Swift標準ライブラリ
Declaration
宣言
var words: Self.Words
{ get }
Discussion
解説
Negative values are returned in two’s complement representation, regardless of the type’s underlying implementation.
負の値が、2の補数表現において返されます、その型のもつ基礎となる実装に関係なく。
See Also
参照
Working with Binary Representation
バイナリ表現を扱う
var bitWidth: Int
The number of bits in the current binary representation of this value.
この値の現在のバイナリ表現でのビット数。
Required.
必須。
associatedtype Words
A type that represents the words of a binary integer.
あるバイナリ整数の単語を表す型。
Required.
必須。