ImmutableHashSet.ToImmutableHashSet Método
Definição
Sobrecargas
ToImmutableHashSet<TSource>(IEnumerable<TSource>) |
Enumera uma sequência e produz um conjunto de hash imutável de seu conteúdo.Enumerates a sequence and produces an immutable hash set of its contents. |
ToImmutableHashSet<TSource>(ImmutableHashSet<TSource>.Builder) |
Cria um conjunto hash imutável do conteúdo atual do conjunto do construtor.Creates an immutable hash set from the current contents of the builder's set. |
ToImmutableHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) |
Enumera uma sequência, produz um conjunto de hash imutável de seu conteúdo e usa o comparador de igualdade especificado para o tipo de conjunto.Enumerates a sequence, produces an immutable hash set of its contents, and uses the specified equality comparer for the set type. |
ToImmutableHashSet<TSource>(IEnumerable<TSource>)
Enumera uma sequência e produz um conjunto de hash imutável de seu conteúdo.Enumerates a sequence and produces an immutable hash set of its contents.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableHashSet<TSource> ^ ToImmutableHashSet(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Immutable.ImmutableHashSet<TSource> ToImmutableHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member ToImmutableHashSet : seq<'Source> -> System.Collections.Immutable.ImmutableHashSet<'Source>
<Extension()>
Public Function ToImmutableHashSet(Of TSource) (source As IEnumerable(Of TSource)) As ImmutableHashSet(Of TSource)
Parâmetros de tipo
- TSource
O tipo dos elementos na sequência.The type of the elements in the sequence.
Parâmetros
- source
- IEnumerable<TSource>
A sequência a ser enumerada.The sequence to enumerate.
Retornos
- ImmutableHashSet<TSource>
Um conjunto de hash imutável que contém os itens na sequência especificada.An immutable hash set that contains the items in the specified sequence.
Aplica-se a
ToImmutableHashSet<TSource>(ImmutableHashSet<TSource>.Builder)
Cria um conjunto hash imutável do conteúdo atual do conjunto do construtor.Creates an immutable hash set from the current contents of the builder's set.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableHashSet<TSource> ^ ToImmutableHashSet(System::Collections::Immutable::ImmutableHashSet<TSource>::Builder ^ builder);
public static System.Collections.Immutable.ImmutableHashSet<TSource> ToImmutableHashSet<TSource> (this System.Collections.Immutable.ImmutableHashSet<TSource>.Builder builder);
static member ToImmutableHashSet : System.Collections.Immutable.ImmutableHashSet<'Source>.Builder -> System.Collections.Immutable.ImmutableHashSet<'Source>
<Extension()>
Public Function ToImmutableHashSet(Of TSource) (builder As ImmutableHashSet(Of TSource).Builder) As ImmutableHashSet(Of TSource)
Parâmetros de tipo
- TSource
O tipo dos elementos no conjunto de hash.The type of the elements in the hash set.
Parâmetros
- builder
- ImmutableHashSet<TSource>.Builder
O construtor para o qual criar o conjunto hash imutável.The builder to create the immutable hash set from.
Retornos
- ImmutableHashSet<TSource>
Cria um conjunto hash imutável preenchido com o conteúdo atual do conjunto do construtor.An immutable hash set that contains the current contents in the builder's set.
Aplica-se a
ToImmutableHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
Enumera uma sequência, produz um conjunto de hash imutável de seu conteúdo e usa o comparador de igualdade especificado para o tipo de conjunto.Enumerates a sequence, produces an immutable hash set of its contents, and uses the specified equality comparer for the set type.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableHashSet<TSource> ^ ToImmutableHashSet(System::Collections::Generic::IEnumerable<TSource> ^ source, System::Collections::Generic::IEqualityComparer<TSource> ^ equalityComparer);
public static System.Collections.Immutable.ImmutableHashSet<TSource> ToImmutableHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource> equalityComparer);
public static System.Collections.Immutable.ImmutableHashSet<TSource> ToImmutableHashSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource>? equalityComparer);
static member ToImmutableHashSet : seq<'Source> * System.Collections.Generic.IEqualityComparer<'Source> -> System.Collections.Immutable.ImmutableHashSet<'Source>
<Extension()>
Public Function ToImmutableHashSet(Of TSource) (source As IEnumerable(Of TSource), equalityComparer As IEqualityComparer(Of TSource)) As ImmutableHashSet(Of TSource)
Parâmetros de tipo
- TSource
O tipo dos elementos na sequência.The type of the elements in the sequence.
Parâmetros
- source
- IEnumerable<TSource>
A sequência a ser enumerada.The sequence to enumerate.
- equalityComparer
- IEqualityComparer<TSource>
O objeto a ser usado para a comparação dos objetos no conjunto quanto à igualdade.The object to use for comparing objects in the set for equality.
Retornos
- ImmutableHashSet<TSource>
Um conjunto de hash imutável que contém os itens na sequência especificada e usa o comparador de igualdade especificado.An immutable hash set that contains the items in the specified sequence and uses the specified equality comparer.