IImmutableSet<T>.IsProperSubsetOf(IEnumerable<T>) Metodo

Definizione

Determina se il set non modificabile corrente è un subset (strict) appropriato della raccolta specificata.

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

Parametri

other
IEnumerable<T>

Raccolta da confrontare con il set corrente.

Restituisce

true se il set corrente è un subset corretto della raccolta specificata; in caso contrario false.

Commenti

Se il set corrente è un subset appropriato di other, other deve avere almeno un elemento che il set corrente non ha.

Si applica a