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
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.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
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Converting Floating-Point Values 浮動小数点値の変換
init<Source>(Source)
Creates a new instance from the given value, rounded to the closest possible representation.
与えられた値から新しいインスタンスを作成します、最も近い可能な表現に丸められます。
init(Double)
Creates a new instance initialized to the given value.
与えられた値に初期化される新しいインスタンスを作成します。
init(Float)
Creates a new instance that approximates the given value.
与えられた値におおよそ相当する新しいインスタンスを作成します。
init(Float16)
Creates a new instance that approximates the given value.
与えられた値におおよそ相当する新しいインスタンスを作成します。
init(Float80)
Creates a new instance that approximates the given value.
与えられた値におおよそ相当する新しいインスタンスを作成します。
init(CGFloat)
Creates a new instance initialized to the given value.
与えられた値に初期化される新しいインスタンスを作成します。
init(sign: FloatingPointSign, exponent: Int, significand: Double)
Creates a new value from the given sign, exponent, and significand.
与えられた符号、指数、そして仮数から新しい値を作成します。
init<Source>(Source)
Creates a new value, rounded to the closest possible representation.
新しい値を作成します、最も近い可能な表現へ丸められます。