The first value to multiply. 掛け合わされる第1の値。
Operator
演算子
*=(_:
*=(_:_:)
Multiplies two values and stores the result in the left-hand-side variable, rounding to a representable value.
2つの値を乗算して、結果を左手側の変数に格納します、表現可能な値へ丸められます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Arithmetic with Assignment 代入での算術
static func += (inout Float, Float)
Adds two values and stores the result in the left-hand-side variable, rounded to a representable value.
2つの値を加算して、結果を左手側の変数に格納します、表現可能な値へ丸められます。
static func -= (inout Float, Float)
Subtracts the second value from the first and stores the difference in the left-hand-side variable, rounding to a representable value.
2番目の値を最初のものから減じて、その差を左手側の変数の中に格納します、表現可能な値へ丸められます。
static func /= (inout Float, Float)
Divides the first value by the second and stores the quotient in the left-hand-side variable, rounding to a representable value.
最初の値を2番目の値で除算して、商を左手側の変数に格納します、表現可能な値へ丸められます。