Operator
演算子
*=(_:
*=(_:_:)
Multiplies the values of the two arguments, and assigns the result to the first argument.
2つの引数の値を掛けます、そして結果を最初の引数へと割り当てます。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 11.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func *= (lhs: inout RunLoop
.SchedulerTimeType
.Stride
, rhs: RunLoop
.SchedulerTimeType
.Stride
)
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Performing Mathmatical Operations 数学的演算を実行する
func negate()
Replaces this value with its additive inverse.
この値をそれの反数と置き換えます。
static func * (RunLoop.SchedulerTimeType.Stride, RunLoop.SchedulerTimeType.Stride) -> RunLoop.SchedulerTimeType.Stride
Returns the result of multiplying the values of the two arguments.
2つの引数の値を掛ける結果を返します。
static func + (RunLoop.SchedulerTimeType.Stride) -> RunLoop.SchedulerTimeType.Stride
Returns the given number unchanged.
与えられた数を変更せずに返します。
static func + (RunLoop.SchedulerTimeType.Stride, RunLoop.SchedulerTimeType.Stride) -> RunLoop.SchedulerTimeType.Stride
Returns the result of adding the values of the two arguments.
2つの引数の値を加算する結果を返します。
static func += (inout RunLoop.SchedulerTimeType.Stride, RunLoop.SchedulerTimeType.Stride)
Adds the values of the two arguments, and assigns the result to the first argument.
2つの引数の値を加算します、そして結果を最初の引数へと割り当てます。
static func - (RunLoop.SchedulerTimeType.Stride) -> RunLoop.SchedulerTimeType.Stride
Returns the additive inverse of the specified value.
指定された値の反数を返します。
static func - (RunLoop.SchedulerTimeType.Stride, RunLoop.SchedulerTimeType.Stride) -> RunLoop.SchedulerTimeType.Stride
Returns the result of subtracting the value of the second argument from the value of the first.
2番目の引数の値を最初の値から減じる結果を返します。
static func -= (inout RunLoop.SchedulerTimeType.Stride, RunLoop.SchedulerTimeType.Stride)
Subtracts the value of the second argument from the value of the first, and assigns the result to the first argument.
2番目の引数の値を最初の引数の値から減じます、そして結果を最初の引数へと割り当てます。