init(signOf : Self, magnitudeOf : Self)
Creates a new floating-point value using the sign of one value and the magnitude of another.
ある値の符号ともう一方の規模とを使って新しい浮動小数点値を作成します。
Availability
Technology
init(signOf: Self, magnitudeOf: Self)
signOf
A value from which to use the sign. The result of the initializer has the same sign as sign
.
それからの値が符号に使われることになります。イニシャライザの結果は、sign
と同じ符号を持ちます。
magnitudeOf
A value from which to use the magnitude. The result of the initializer has the same magnitude as magnitude
.
そこからの値が規模に使われることになります。イニシャライザの結果は、magnitude
と同じ規模を持ちます。
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
演算を実装します。
init(signOf : Self, magnitudeOf : Self)