ReadOnlyObservableSet.isDisjointFrom - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / ReadOnlyObservableSet<TItem> / isDisjointFrom method
Checks whether there are no items common in both the current set and the provided collection.
public isDisjointFrom(
other: Iterable<TItem> | ISetLike<TItem> | Set<TItem>
): booleanSource reference: src/collections/observableSet/ReadOnlyObservableSet.ts:99.
Returns: boolean
Returns true if there are no items common in both the current set and the provided collection; otherwise false.