IReadOnlyObservableSet.symmetricDifference - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / IReadOnlyObservableSet<TItem> / symmetricDifference method
Generates a set that contains all items from both the current and provided collection, but are not contained by both.
symmetricDifference(
other: Iterable<TItem> | ISetLike<TItem> | Set<TItem>
): Set<TItem>
Source reference: src/collections/observableSet/IReadOnlyObservableSet.ts:106
.
Returns: Set<TItem>
Returns a new set containing all items from both the current and provided collection, but not contained by both.