Instance Method インスタンスメソッド

dividedReportingOverflow(by:)

Returns the quotient obtained by dividing this value by the given value, along with a Boolean value indicating whether overflow occurred in the operation. この値を指定の値で割ることで入手される商、それに加えてオーバーフローがその演算において起こったかどうかを示すブール値を返します。

Declaration 宣言

func dividedReportingOverflow(by other: Int16) -> (partialValue: Int16, overflow: Bool)

Parameters パラメータ

rhs

The value to divide this value by. この値を除算するための値。

Return Value 戻り値

A tuple containing the result of the division along with a Boolean value indicating whether overflow occurred. If the overflow component is false, the partialValue component contains the entire quotient. If the overflow component is true, an overflow occurred and the partialValue component contains either the truncated quotient or, if the quotient is undefined, the dividend. 除算の結果とそれだけでなくオーバーフローがその演算において起こったかどうかを示すブール値を含んでいるタプル。overflow構成部分がfalseならば、partialValue構成部分は全体の商を含みます。overflow構成部分がtrueであるならば、オーバーフローが起こった、そしてpartialValue構成部分は切り詰められた商または、商が未定義ならば、被除数のどちらかを含みます。

Discussion 解説

Dividing by zero is not an error when using this method. For a value x, the result of x.dividedReportingOverflow(by: 0) is (x, true). ゼロによる除算は、このメソッドを使う場合はエラーではありません。値xに対して、x.dividedReportingOverflow(by: 0)の結果は(x, true)です。

Relationships 関係

From Protocol 由来プロトコル