ImmutableSortedSet.ToImmutableSortedSet Método
Definição
Sobrecargas
| ToImmutableSortedSet<TSource>(IEnumerable<TSource>) |
Enumera uma sequência e produz um conjunto classificado imutável de seu conteúdo.Enumerates a sequence and produces an immutable sorted set of its contents. |
| ToImmutableSortedSet<TSource>(ImmutableSortedSet<TSource>.Builder) |
Cria um conjunto classificado imutável do conteúdo atual do conjunto do construtor.Creates an immutable sorted set from the current contents of the builder's set. |
| ToImmutableSortedSet<TSource>(IEnumerable<TSource>, IComparer<TSource>) |
Enumera uma sequência, produz um conjunto classificado imutável de seu conteúdo e usa o comparador especificado.Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer. |
ToImmutableSortedSet<TSource>(IEnumerable<TSource>)
Enumera uma sequência e produz um conjunto classificado imutável de seu conteúdo.Enumerates a sequence and produces an immutable sorted set of its contents.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member ToImmutableSortedSet : seq<'Source> -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (source As IEnumerable(Of TSource)) As ImmutableSortedSet(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
- ImmutableSortedSet<TSource>
Um conjunto classificado imutável que contém os itens na sequência especificada.An immutable sorted set that contains the items in the specified sequence.
Aplica-se a
ToImmutableSortedSet<TSource>(ImmutableSortedSet<TSource>.Builder)
Cria um conjunto classificado imutável do conteúdo atual do conjunto do construtor.Creates an immutable sorted set from the current contents of the builder's set.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Immutable::ImmutableSortedSet<TSource>::Builder ^ builder);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource> (this System.Collections.Immutable.ImmutableSortedSet<TSource>.Builder builder);
static member ToImmutableSortedSet : System.Collections.Immutable.ImmutableSortedSet<'Source>.Builder -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (builder As ImmutableSortedSet(Of TSource).Builder) As ImmutableSortedSet(Of TSource)
Parâmetros de tipo
- TSource
O tipo dos elementos no conjunto classificado imutável.The type of the elements in the immutable sorted set.
Parâmetros
- builder
- ImmutableSortedSet<TSource>.Builder
O construtor para o qual criar o conjunto classificado imutável.The builder to create the immutable sorted set from.
Retornos
- ImmutableSortedSet<TSource>
Cria um conjunto classificado imutável preenchido com o conteúdo atual do conjunto do construtor.An immutable sorted set that contains the current contents in the builder's set.
Aplica-se a
ToImmutableSortedSet<TSource>(IEnumerable<TSource>, IComparer<TSource>)
Enumera uma sequência, produz um conjunto classificado imutável de seu conteúdo e usa o comparador especificado.Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Immutable::ImmutableSortedSet<TSource> ^ ToImmutableSortedSet(System::Collections::Generic::IEnumerable<TSource> ^ source, System::Collections::Generic::IComparer<TSource> ^ comparer);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource> comparer);
public static System.Collections.Immutable.ImmutableSortedSet<TSource> ToImmutableSortedSet<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, System.Collections.Generic.IComparer<TSource>? comparer);
static member ToImmutableSortedSet : seq<'Source> * System.Collections.Generic.IComparer<'Source> -> System.Collections.Immutable.ImmutableSortedSet<'Source>
<Extension()>
Public Function ToImmutableSortedSet(Of TSource) (source As IEnumerable(Of TSource), comparer As IComparer(Of TSource)) As ImmutableSortedSet(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.
- comparer
- IComparer<TSource>
O comparador a ser usado para inicializar e adicionar membros ao conjunto classificado.The comparer to use for initializing and adding members to the sorted set.
Retornos
- ImmutableSortedSet<TSource>
Um conjunto classificado imutável que contém os itens na sequência especificada.An immutable sorted set that contains the items in the specified sequence.