Return Value 戻り値
The difference needed to produce this collection’s ordered elements from the given collection. このコレクションのもつ順番付き要素をこの与えられたコレクションから生成するのに必要な差異。
Availability 有効性
Technology
func difference<C>(from other: C) -> CollectionDifference
<Self.Element> where C : BidirectionalCollection
, Self.Element == C.Element
Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
The difference needed to produce this collection’s ordered elements from the given collection. このコレクションのもつ順番付き要素をこの与えられたコレクションから生成するのに必要な差異。
other
The base state. 基準状態。
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, or if Element
conforms to Hashable
.