ImmutableHashSet<T>.IsProperSubsetOf(IEnumerable<T>) Método
Definição
Determina se o conjunto de hash imutável atual é um subconjunto apropriado (estrito) de uma coleção especificada.Determines whether the current immutable hash set is a proper (strict) subset of a specified collection.
public:
virtual bool IsProperSubsetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSubsetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSubsetOf : seq<'T> -> bool
override this.IsProperSubsetOf : seq<'T> -> bool
Public Function IsProperSubsetOf (other As IEnumerable(Of T)) As Boolean
Parâmetros
- other
- IEnumerable<T>
A coleção a ser comparada com o conjunto atual.The collection to compare to the current set.
Retornos
true se o conjunto atual for um subconjunto apropriado da coleção especificada; caso contrário, false.true if the current set is a proper subset of the specified collection; otherwise, false.
Implementações
Comentários
Se o conjunto atual for um subconjunto adequado de other , other deve haver pelo menos um elemento que o conjunto atual não tenha.If the current set is a proper subset of other, other must have at least one element that the current set does not have.