A tuple containing the high and low parts of a double-width integer. The high
component of the value carries the sign, if the type is signed.
2倍幅整数の高および低部分を含んでいるタプル。値のhigh
構成部分は符号を運びます、その型が符号付きならば。
Instance Method
インスタンスメソッド
dividing
dividingFullWidth(_:)
Returns a tuple containing the quotient and remainder of dividing the given value by this value.
与えられた値をこの値で除算した商と余りを含んでいるタプルを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
dividend
Return Value 戻り値
A tuple containing the quotient and remainder of dividend
divided by this value.
dividend
をこの値で除算した商と余りを含んでいるタプル。
Discussion 解説
The resulting quotient must be representable within the bounds of the type. If the quotient of dividing dividend
by this value is too large to represent in the type, a runtime error may occur.
結果の商は、この型の境界の内に表現可能でなければなりません。dividend
をこの値で除算した商がこの型で表すのに大きすぎるならば、実行時エラーが起こります。