The value to divide. 除算することになる値。
Operator
演算子
/=(_:
/=(_:_:)
Divides the first value by the second and stores the quotient 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標準ライブラリ
Declaration 宣言
static func /= (lhs: inout Self, rhs: Self)
Parameters パラメータ
lhs
rhs
The value to divide
lhs
by. この値でlhs
を除算します。