The sign of the new value. 新しい値の符号。
Initializerinit(sign:
init(sign:exponentBitPattern:significandBitPattern:)
Creates a new instance from the specified sign and bit patterns.
指定された符号とビットパターンから新しいインスタンスを作成します。
Availability
- macOS 10.10+
- Mac Catalyst 13.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(sign: FloatingPointSign
, exponentBitPattern: UInt
, significandBitPattern: UInt64
)
Parameters パラメータ
sign
exponentBitPattern
The bit pattern to use for the exponent field of the new value. 新しい値の指数フィールドに使うためのビットパターン。
significandBitPattern
The bit pattern to use for the significand field of the new value. 新しい値の仮数フィールドに使うためのビットパターン。
Discussion 解説
The values passed as exponent
and significand
are interpreted in the binary interchange format defined by the IEEE 754 specification.
exponent
とsignificand
に渡される値は、IEEE 754 specificationで定義されるバイナリ交換フォーマットにおいて解釈されます。
Note 注意
This documentation comment was inherited from Binary
.
この文書化コメントは、Binary
から引き継がれました。