Operator 演算子

-(_:_:)

Subtracts one value from another and produces their difference, rounded to a representable value. ある値をもう一方から減じて、それらの差を返します、表現可能な値へ丸められます。

Declaration 宣言

static func - (lhs: Float, rhs: Float) -> Float

Parameters パラメータ

lhs

A numeric value. ある数値。

rhs

The value to subtract from lhs. lhsから減じる値。

Discussion 解説

The subtraction operator (-) calculates the difference of its two arguments. For example: 減算演算子(-)は、それの2つの引数の差を計算します。例えば:


let x = 7.5
let y = x - 2.25
// y == 5.25

The - operator implements the subtraction operation defined by the IEEE 754 specification. -演算子は、IEEE 754 仕様によって定義される減算演算子を実装します。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Arithmetic 算術