The value to use for the new instance. 新しいインスタンスのために使う値。
Initializer
init(_:)
Creates a new instance that approximates the given value.
与えられた値におおよそ相当する新しいインスタンスを作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.0.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(_ other: Float
)
Parameters パラメータ
other
Discussion 解説
The value of other
is rounded to a representable value, if necessary. A NaN passed as other
results in another NaN, with a signaling NaN value converted to quiet NaN.
other
の値は、必要ならば、表現可能な値へと丸められます。other
として渡されるNaNは、シグナルNaN値はクワイエットNaNに変換されて、別のNaNという結果になります。
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(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(signOf : Double, magnitudeOf : Double)
Creates a new floating-point value using the sign of one value and the magnitude of another.
ある値の符号ともう一方の規模とを使って新しい浮動小数点値を作成します。
init<Source>(Source)
Creates a new value, rounded to the closest possible representation.
新しい値を作成します、最も近い可能な表現へ丸められます。