Operator 演算子

/(_:_:)

Returns the quotient of dividing the first value by the second. 最初の値を2番目の値で除算した商を返します。

Declaration 宣言

static func / (lhs: UInt8, rhs: UInt8) -> UInt8

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. 整数型に対して、除算の余りは何であれ破棄されます。


let x = 21 / 5
// x == 4

Relationships 関係

From Protocol 由来プロトコル