Skip to content

IReadOnlyObservableSet.intersection

github-actions[bot] edited this page Dec 3, 2024 · 3 revisions
API / IReadOnlyObservableSet<TItem> / intersection method

Generates a set that contains the items contained by both the current and provided collection.

intersection(
  other: Iterable<TItem, any, any> | ISetLike<TItem> | Set<TItem>
): Set<TItem>

Source reference: src/collections/observableSet/IReadOnlyObservableSet.ts:90.

Parameters

Returns: Set<TItem>

Returns a set that contains the items contained by both the current and provided collection.

See also

Clone this wiki locally