The distance to advance this value. この値を前進させる距離。
Instance Method
インスタンスメソッド
advanced(by:)
Returns a value that is offset the specified distance from this value.
指定の隔たりをこの値からオフセットされたある値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
n
Return Value 戻り値
A value that is offset from this value by n
.
この値からn
をオフセットされる値。
Discussion 解説
Use the advanced(by:)
method in generic code to offset a value by a specified distance. If you’re working directly with numeric values, use the addition operator (+
) instead of this method.
advanced(by:)
メソッドを総称体コードにおいて使用して、ある値を指定された隔たりだけオフセットしてください。あなたが直接に数値を扱っているならば、加算演算子(+
)をこのメソッドの代わりに使ってください。
For a value x
, a distance n
, and a value y = x
, x
.
値x
、隔たりn
、および値y = x
に対して、x
。