- differenceFromArray:
- differenceFromArray:withOptions:usingEquivalenceTest:
NSOrderedCollectionDifference
NSOrderedCollectionDifferenceCalculationOptions
Availability 有効性
Technology
- (NSOrderedCollectionDifference
<ObjectType > *)differenceFromArray:(NSArray
<ObjectType > *)other
withOptions:(NSOrderedCollectionDifferenceCalculationOptions
)options;
The difference method creates the difference object by comparing objects within the arrays with the is
method.
この差異メソッドは、配列それらの内部のオブジェクトをis
メソッドで比較することによって差異オブジェクトを作成します。
The options allow you to choose to omit insertion or removal references to the change objects within the difference object. You can also choose to infer moves when computing the difference, which provides an associated
within the change objects that indicates the index in the array where the object moved from.
オプションは、変化オブジェクトへの挿入または除去参照を差異オブジェクト内で省くことをあなたに選ばせます。あなたはまた、差異を計算する時に移動を推論することを選べます、それは変化オブジェクトそれら内でのあるassociated
を提供します、それは、そこからそのオブジェクトが移動したところの、その配列の中のインデックスを指し示します。
The following example computes the difference between two arrays, inferring moves between them: 以下の例は、2つの配列の間の差異を、それらの間の移動を推論して計算します:
- differenceFromArray:
- differenceFromArray:withOptions:usingEquivalenceTest:
NSOrderedCollectionDifference
NSOrderedCollectionDifferenceCalculationOptions