The base state. 基準状態。
difference(from:by:)
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 15.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func difference<C>(from other: C, by areEquivalent: (C.Element
, (T.Value
?, U.Value
?, Range
<AttributedString
.Index
>)) -> Bool
) -> CollectionDifference
<(T.Value
?, U.Value
?, Range
<AttributedString
.Index
>)> where C : BidirectionalCollection
, (T.Value
?, U.Value
?, Range
<AttributedString
.Index
>) == C.Element
Parameters パラメータ
other
areEquivalent
A closure that returns a Boolean value indicating whether two elements are equivalent. あるクロージャ、それは2つの要素が等しいかどうかを指し示しているブール値を返します。
Return Value 戻り値
The difference needed to produce the receiver’s state from the parameter’s state. レシーバのもつ状態をパラメータのもつ状態から生成するのに必要とされる差異。
Discussion 議論
This function does not infer element moves. If you need to infer moves, call the inferring
method on the resulting difference.
この関数は、要素の移動を推論しません。あなたが移動を推論する必要があるならば、inferring
メソッドを結果の差異の上で呼び出してください。
Complexity: Worst case performance is O(n * m), where n is the count of this collection and m is other
. You can expect faster execution when the collections share many common elements.
計算量:最悪の場合の性能は、O(n * m)です、ここでnはこのコレクションの総数です、そしてmはother
です。あなたは、コレクションが多くの共通する要素を共有する時は、より速い遂行を期待できます。