IReadOnlyObservableSet.isSupersetOf - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / IReadOnlyObservableSet<TItem> / isSupersetOf method
Checks whether all items from the provided collection are contained by the current set.
isSupersetOf(
other: Iterable<TItem> | ISetLike<TItem> | Set<TItem>
): booleanSource reference: src/collections/observableSet/IReadOnlyObservableSet.ts:74.
Returns: boolean
Returns true if all items from the provided collection are found in the current set; otherwise false.