The value to multiply by this value. この値と掛け合わせられることになる値。
Instance Method
インスタンスメソッド
multiplied
multipliedReportingOverflow(by:)
Returns the product of this value and the given value, along with a Boolean value indicating whether overflow occurred in the operation.
この値と与えられた値の積、それに加えてオーバーフローがその演算において起こったかどうかを示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 7.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func multipliedReportingOverflow(by rhs: Self) -> (partialValue: Self, overflow: Bool
)
Parameters パラメータ
rhs
Return Value 戻り値
A tuple containing the result of the multiplication along with a Boolean value indicating whether overflow occurred. If the overflow
component is false
, the partial
component contains the entire product. If the overflow
component is true
, an overflow occurred and the partial
component contains the truncated product of this value and rhs
.
乗算の結果とそれだけでなくオーバーフローが起こったかどうかを示すブール値を含んでいるタプル。overflow
構成部分がfalse
ならば、partial
構成部分は積そのままを含みます。overflow
構成部分がtrue
であるならば、オーバーフローが起こるとpartial
構成部分はこの値とrhs
の積の切り詰められたものを含みます。