Click or drag to resize

FileBackedHashSet<T> .IsSubsetOf Method

Determines whether a set is a subset of a specified collection.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
Syntax
public bool IsSubsetOf(
	IEnumerable<T> other
)
View Source

Parameters

other  IEnumerable<T>
The collection to compare to the current set.

Return Value

Boolean
true if the current set is a subset of other; otherwise, false.

Implements

ISet<T>.IsSubsetOf(IEnumerable<T>)
Exceptions
ExceptionCondition
ArgumentNullExceptionother is null.
NotSupportedExceptionThe FileBackedHashSet<T> is read-only.
See Also