SortedSet<T>.IsProperSupersetOf(IEnumerable<T>) 메서드

정의

SortedSet<T> 개체가 지정된 컬렉션의 진 상위 집합인지 확인합니다.

public:
 virtual bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSupersetOf : seq<'T> -> bool
override this.IsProperSupersetOf : seq<'T> -> bool
Public Function IsProperSupersetOf (other As IEnumerable(Of T)) As Boolean

매개 변수

other
IEnumerable<T>

현재 SortedSet<T> 개체와 비교할 컬렉션입니다.

반환

SortedSet<T> 개체가 other의 진 포함 집합이면 true이고, 그렇지 않으면 false입니다.

구현

예외

other이(가) null인 경우

설명

빈 집합은 다른 컬렉션의 적절한 상위 집합입니다. 따라서 이 메서드는 현재 SortedSet<T> 컬렉션도 비어 있지 않으면 매개 변수가 other 나타내는 컬렉션이 비어 있으면 를 반환 true 합니다.

이 메서드는 가 의 요소 other수보다 작거나 같으면 Count 항상 를 반환 false 합니다.

가 나타내는 other 컬렉션이 SortedSet<T> 현재 SortedSet<T> 개체와 동일한 같음 비교자를 가진 컬렉션이면 이 메서드는 연산입니다 O(n) . 그렇지 않으면 이 메서드는 연산입니다 O(n + m) . 여기서 n 는 의 요소 other 수이고 m 는 입니다 Count.

적용 대상