Operator 演算子

/=(_:_:)

Divides the first value by the second and stores the quotient in the left-hand-side variable, rounding to a representable value. 最初の値を2番目の値で除算して、商を左手側の変数に格納します、表現可能な値へ丸められます。

Declaration 宣言

static func /= (lhs: inout Float, rhs: Float)

Parameters パラメータ

lhs

The value to divide. 除算することになる値。

rhs

The value to divide lhs by. この値でlhsを除算します。

Discussion 解説

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Arithmetic with Assignment 代入での算術