Operator 演算子

/=(_:_:)

Divides the first value by the second and stores the quotient in the left-hand-side variable. 最初の値を2番目の値で除算して、商を左手側の変数に格納します。

Declaration 宣言

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

Parameters パラメータ

lhs

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

rhs

The value to divide lhs by. rhs must not be zero. この値でlhsを除算します。rhsは、ゼロではなりません。

Discussion 解説

For integer types, any remainder of the division is discarded. 整数型に対して、除算の余りは何であれ破棄されます。


var x = 21
x /= 5
// x == 4

Relationships 関係

From Protocol 由来プロトコル