ImmutableSortedSet<T>.IsSubsetOf(IEnumerable<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷目前的不可變的已排序資料集是否為指定之集合的子集。
public:
virtual bool IsSubsetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsSubsetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsSubsetOf : seq<'T> -> bool
override this.IsSubsetOf : seq<'T> -> bool
Public Function IsSubsetOf (other As IEnumerable(Of T)) As Boolean
參數
- other
- IEnumerable<T>
要與目前資料組比較的集合。
傳回
如果目前資料集是 other
的子集,則為 true
,否則為 false
。
實作
備註
空集是任何其他集合的子集,包括另一個空白集。 因此,如果目前的集合是空的,這個方法會傳回 true
,即使集合也是空的 other
。
System.Collections.Immutable NuGet 套件