Skip to content

ReadOnlyObservableSet.isDisjointFrom

github-actions[bot] edited this page Nov 17, 2024 · 2 revisions
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, any, any> | ISetLike<TItem> | Set<TItem>
): boolean

Source reference: src/collections/observableSet/ReadOnlyObservableSet.ts:97.

Parameters

Returns: boolean

Returns true if there are no items common in both the current set and the provided collection; otherwise false.

See also

Clone this wiki locally