ImmutableSortedSet<T>.IsSubsetOf(IEnumerable<T>) Método

Definición

Determina si el conjunto ordenado inmutable actual es un subconjunto apropiado de una colección especificada.

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

Parámetros

other
IEnumerable<T>

Colección que se va a comparar con el conjunto actual.

Devoluciones

true si el conjunto actual es un subconjunto de other; en caso contrario, false.

Implementaciones

Comentarios

Un conjunto vacío es un subconjunto de cualquier otro conjunto, incluido otro conjunto vacío. Por lo tanto, este método devuelve true si el conjunto actual está vacío, incluso si la other colección también está vacía.

Paquete NuGet System.Collections.Immutable

Acerca de las colecciones inmutables y cómo instalar

Se aplica a