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 宣言
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 仕様によって定義される除算演算子を実装します。
Note 注意
This documentation comment was inherited from Floating
.
この文書化コメントは、Floating
から引き継がれました。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Arithmetic 算術
static func + (Float, Float) -> Float
Adds two values and produces their sum, rounded to a representable value.
2つの値を加算してそれらの合計を生成します、表現可能な値へ丸められます。
static func - (Float, Float) -> Float
Subtracts one value from another and produces their difference, rounded to a representable value.
ある値をもう一方から減じて、それらの差を返します、表現可能な値へ丸められます。
static func * (Float, Float) -> Float
Multiplies two values and produces their product, rounding to a representable value.
2つの値を乗算してそれらの積を生成します、表現可能な値へ丸められます。