The difference to be applied. 適用されることになる差異。
Instance Method
インスタンスメソッド
applying(_:)
Applies the given difference to this collection.
与えられた差異をこのコレクションに適用します。
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func applying(_ difference: CollectionDifference
<Element>) -> ArraySlice
<Element>?
Parameters パラメータ
difference
Return Value 戻り値
An instance representing the state of the receiver with the difference applied, or nil
if the difference is incompatible with the receiver’s state.
適用された差異をもつレシーバの状態を表しているインスタンス、またはnil
、もし差異がレシーバのもつ状態と相容れないならば。
Discussion 解説
Complexity: O(n + c), where n is self
and c is the number of changes contained by the parameter.
計算量:O(n + c)、ここでnはself
です、そしてcはパラメータによって含まれる変更の数です。