The key path to append. 追加することになるキーパス。
Generic Instance Method
総称体インスタンスメソッド
appending(path:)
Returns a new key path created by appending the given key path to this one.
与えられたキーパスをこのものに加えることによって作成された新しいキーパスを返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
path
Return Value 戻り値
A key path from the root of this key path to the value type of path
.
このキーパスのルートから、path
の値型へのキーパス。
Discussion 解説
Use this method to extend this key path to the value type of another key path. Calling appending(path:)
results in the same key path as if the given key path had been specified using dot notation. In the following example, key
and key
are equivalent:
このメソッドを使うことで、このキーパスを別のキーパスの値型にまで広げてください。appending(path:)
を呼び出すことは、与えられたキーパスがドット表記法を使って指定された場合と同じキーパスという結果になります。以下の例において、key
とkey
は同等です: