A value from which to use the sign. The result of the initializer has the same sign as sign
.
それからの値が符号に使われることになります。イニシャライザの結果は、sign
と同じ符号を持ちます。
Initializerinit(sign
init(signOf:magnitudeOf:)
Creates a new floating-point value using the sign of one value and the magnitude of another.
ある値の符号ともう一方の規模とを使って新しい浮動小数点値を作成します。
Availability
- macOS 11.0+
- Mac Catalyst 13.0+
- Xcode 11.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
signOf
Of Of magnitudeOf
A value from which to use the magnitude. The result of the initializer has the same magnitude as
magnitude
. そこからの値が規模に使われることになります。イニシャライザの結果は、Of magnitude
と同じ規模を持ちます。Of
Discussion 解説
The following example uses this initializer to create a new Double
instance with the sign of a
and the magnitude of b
:
以下の例は、このイニシャライザを使って新しいDouble
インスタンスをa
の符号とb
の規模で作成します:
This initializer implements the IEEE 754 copysign
operation.
このイニシャライザは、IEEE 754 copysign
演算を実装します。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。