func subtracting(Measurement<Unit>) -> Measurement<Unit>
Returns a new measurement by subtracting the specified measurement from the receiver.
指定された寸法をレシーバから引くことによる新しい寸法を返します。
Availability 有効性
Technology
func adding(_ measurement: Measurement
<Unit
>) -> Measurement
<Unit
>
measurement
The measurement to be added. 加えられることになる寸法。
A new measurement with a value equal to the receiver’s value plus the value of the specified measurement converted into the unit of the receiver. レシーバの単位へと変換されたこの指定された寸法の値を、レシーバのもつ値に加えたものと等しい値を持つ、ある新しい寸法。
This method raises an invalid
if the receiver cannot be converted to unit.
このメソッドは、レシーバが単位へと変換されることができないならばinvalid
を引き起こします。
You can use the can
method, passing the unit of the specified measurement, to determine whether a measurement can be converted to a particular unit before calling this method.
あなたはcan
メソッドを、この指定された寸法の単位を渡して使用することで、寸法が特定の単位へとこのメソッドを呼び出す前に変換できるかどうか判定できます。
func subtracting(Measurement<Unit>) -> Measurement<Unit>