static func * (Double, Measurement<UnitType>) -> Measurement<UnitType>
Multiply a scalar value by a measurement.
あるスカラー値に寸法を掛けます。
static func * (Measurement<UnitType>, Double) -> Measurement<UnitType>
Multiply a measurement by a scalar value.
ある寸法にスカラー値を掛けます。
static func + (Measurement<UnitType>, Measurement<UnitType>) -> Measurement<UnitType>
Add two measurements.
2つの寸法を加算します。
static func + (Measurement<UnitType>, Measurement<UnitType>) -> Measurement<UnitType>
Adds two measurements of the same dimension.
Available when
UnitType
conforms to Dimension
.
UnitType
がDimension
に準拠する時に利用可能。
static func - (Measurement<UnitType>, Measurement<UnitType>) -> Measurement<UnitType>
Subtract one measurement from another.
一方の寸法を別のものから引きます。
static func - (Measurement<UnitType>, Measurement<UnitType>) -> Measurement<UnitType>
Subtracts two measurements of the same dimension.
Available when
UnitType
conforms to Dimension
.
UnitType
がDimension
に準拠する時に利用可能。
static func / (Measurement<UnitType>, Double) -> Measurement<UnitType>
Divide a measurement by a scalar value.
ある寸法をスカラー値で割ります。