The value to divide. 除算することになる値。
Operator
演算子
/(_:
/(_:_:)
Returns the quotient of dividing the first value by the second, rounded to a representable value.
最初の値を2番目の値で除算した商を返します、表現可能な値に丸められます。
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 宣言
static func / (lhs: Self, rhs: Self) -> Self
Parameters パラメータ
lhs
rhs
The value to divide
lhs
by. この値でlhs
を除算します。
Discussion 解説
The division operator (/
) calculates the quotient of the division if rhs
is nonzero. If rhs
is zero, the result of the division is infinity, with the sign of the result matching the sign of lhs
.
除算演算子(/
)は、rhs
が非ゼロならばその除算の商を計算します。rhs
がゼロならば、除算の結果は無限大です、結果の符号はlhs
の符号と一致します。
The /
operator implements the division operation defined by the IEEE 754 specification.
/
演算子は、IEEE 754 仕様によって定義される除算演算子を実装します。