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

addingReportingOverflow(_:)

Returns the sum of this value and the given value, along with a Boolean value indicating whether overflow occurred in the operation. この値と与えられた値の合計、それに加えてオーバーフローがその演算において起こったかどうかを示すブール値を返します。

Declaration 宣言

func addingReportingOverflow(_ rhs: Self) -> (partialValue: Self, overflow: Bool)

Parameters パラメータ

rhs

The value to add to this value. この値に加える値。

Return Value 戻り値

A tuple containing the result of the addition along with a Boolean value indicating whether overflow occurred. If the overflow component is false, the partialValue component contains the entire sum. If the overflow component is true, an overflow occurred and the partialValue component contains the truncated sum of this value and rhs. 加算の結果とそれだけでなくオーバーフローがその演算において起こったかどうかを示すブール値を含んでいるタプル。overflow構成部分がfalseならば、partialValue構成部分は合計そのままを含みます。overflow構成部分がtrueであるならば、オーバーフローが起こるとpartialValue構成部分はこの値とrhsの合計の切り詰められたものを含みます。