FrozenSet.ToFrozenSet<T> Método

Definição

Cria um FrozenSet<T> com os valores especificados.

public static System.Collections.Frozen.FrozenSet<T> ToFrozenSet<T> (this System.Collections.Generic.IEnumerable<T> source, System.Collections.Generic.IEqualityComparer<T>? comparer = default);
static member ToFrozenSet : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Frozen.FrozenSet<'T>
<Extension()>
Public Function ToFrozenSet(Of T) (source As IEnumerable(Of T), Optional comparer As IEqualityComparer(Of T) = Nothing) As FrozenSet(Of T)

Parâmetros de tipo

T

O tipo dos valores no conjunto.

Parâmetros

source
IEnumerable<T>

Os valores a serem usados para preencher o conjunto.

comparer
IEqualityComparer<T>

A implementação de comparador a ser usada para comparar os valores quanto à igualdade. Se null, Default é usado.

Retornos

Um conjunto congelado.

Aplica-se a